Package com.sun.appserv.management.base

Examples of com.sun.appserv.management.base.NotificationService.listenTo()


    final QueryMgr  queryMgr  = getQueryMgr();
    final ObjectName  objectName  = Util.getObjectName( queryMgr );
   
    final Object  id  = proxy.createBuffer( 10, null);
    final NotificationServiceHelper  helper  = new NotificationServiceHelper( proxy, id);
    proxy.listenTo( objectName, null );
    assert( proxy.getListeneeSet().size() == 1 );
    assert( Util.getObjectName( (Util.asAMX(proxy.getListeneeSet().iterator().next())) ).equals( objectName ) );
   
    final MyListener  myListener  = new MyListener();
    proxy.addNotificationListener( myListener, null, null );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.