| javax.management.NotificationEmitter
All known Subclasses: javax.management.modelmbean.RequiredModelMBean, javax.management.MBeanServerDelegate, test.javax.management.remote.support.Marshalling, javax.management.NotificationBroadcasterSupport, mx4j.tools.remote.proxy.RemoteMBeanProxy, mx4j.monitor.MX4JMonitor,
NotificationEmitter | public interface NotificationEmitter extends NotificationBroadcaster(Code) | | Interface implemented by an MBean that emits Notifications.
version: $Revision: 1.4 $ See Also: Notification since: JMX 1.2 |
removeNotificationListener | public void removeNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) throws ListenerNotFoundException(Code) | | Removes a notification listener from this MBean.
The MBean must have a registered listener that exactly matches the given listener, filter, and handback parameters.
Parameters: listener - The listener that was previously added to this MBean. Parameters: filter - The filter that was specified when the listener was added. Parameters: handback - The handback that was specified when the listener was added. throws: ListenerNotFoundException - If the triple listener, filter, handback is not registered with the emitter |
|
|