NotificationBroadcasterSupport (Java SE 16 & JDK 16) (original) (raw)
All Implemented Interfaces:
[NotificationBroadcaster](NotificationBroadcaster.html "interface in javax.management")
, [NotificationEmitter](NotificationEmitter.html "interface in javax.management")
Direct Known Subclasses:
[JMXConnectorServer](remote/JMXConnectorServer.html "class in javax.management.remote")
, [Monitor](monitor/Monitor.html "class in javax.management.monitor")
, [RelationService](relation/RelationService.html "class in javax.management.relation")
, [Timer](timer/Timer.html "class in javax.management.timer")
Provides an implementation of NotificationEmitter interface. This can be used as the super class of an MBean that sends notifications.
By default, the notification dispatch model is synchronous. That is, when a thread calls sendNotification, theNotificationListener.handleNotification
method of each listener is called within that thread. You can override this default by overriding handleNotification
in a subclass, or by passing an Executor to the constructor.
If the method call of a filter or listener throws an Exception, then that exception does not prevent other listeners from being invoked. However, if the method call of a filter or of Executor.execute
or ofhandleNotification
(when no Excecutor
is specified) throws anError, then that Error
is propagated to the caller ofsendNotification.
Remote listeners added using the JMX Remote API (see JMXConnector) are not usually called synchronously. That is, when sendNotification returns, it is not guaranteed that any remote listeners have yet received the notification.
Since:
1.5
Constructor Summary
Constructors
Constructs a NotificationBroadcasterSupport where each listener is invoked by the thread sending the notification.
Constructs a NotificationBroadcasterSupport where each listener is invoked using the given Executor.
Constructs a NotificationBroadcasterSupport with information about the notifications that may be sent, and where each listener is invoked using the given Executor.
Constructs a NotificationBroadcasterSupport with information about the notifications that may be sent.
Method Summary
void
Returns an array indicating, for each notification this MBean may send, the name of the Java class of the notification and the notification type.protected void
This method is called by sendNotification for each listener in order to send the notification to that listener.void
Removes a listener from this MBean.void
Removes a listener from this MBean.void
Methods declared in class java.lang.Object
[clone](../../../java.base/java/lang/Object.html#clone%28%29), [equals](../../../java.base/java/lang/Object.html#equals%28java.lang.Object%29), [finalize](../../../java.base/java/lang/Object.html#finalize%28%29), [getClass](../../../java.base/java/lang/Object.html#getClass%28%29), [hashCode](../../../java.base/java/lang/Object.html#hashCode%28%29), [notify](../../../java.base/java/lang/Object.html#notify%28%29), [notifyAll](../../../java.base/java/lang/Object.html#notifyAll%28%29), [toString](../../../java.base/java/lang/Object.html#toString%28%29), [wait](../../../java.base/java/lang/Object.html#wait%28%29), [wait](../../../java.base/java/lang/Object.html#wait%28long%29), [wait](../../../java.base/java/lang/Object.html#wait%28long,int%29)
Constructor Details
NotificationBroadcasterSupport
public NotificationBroadcasterSupport()
Constructs a NotificationBroadcasterSupport where each listener is invoked by the thread sending the notification. This constructor is equivalent toNotificationBroadcasterSupport(null, null).NotificationBroadcasterSupport
public NotificationBroadcasterSupport​(Executor executor)
Constructs a NotificationBroadcasterSupport where each listener is invoked using the given Executor. When sendNotification is called, a listener is selected if it was added with a nullNotificationFilter, or if isNotificationEnabled returns true for the notification being sent. The call toNotificationFilter.isNotificationEnabled
takes place in the thread that calledsendNotification
. Then, for each selected listener,executor.execute is called with a command that calls thehandleNotification
method. This constructor is equivalent toNotificationBroadcasterSupport(executor, null).
Parameters:
executor
- an executor used by the methodsendNotification
to send each notification. If it is null, the thread callingsendNotification
will invoke thehandleNotification
method itself.
Since:
1.6NotificationBroadcasterSupport
Constructs a NotificationBroadcasterSupport with information about the notifications that may be sent. Each listener is invoked by the thread sending the notification. This constructor is equivalent to NotificationBroadcasterSupport(null, info).
If theinfo
array is not empty, then it is cloned by the constructor as if byinfo.clone()
, and each call to getNotificationInfo() returns a new clone.
Parameters:
info
- an array indicating, for each notification this MBean may send, the name of the Java class of the notification and the notification type. Can be null, which is equivalent to an empty array.
Since:
1.6NotificationBroadcasterSupport
Constructs a NotificationBroadcasterSupport with information about the notifications that may be sent, and where each listener is invoked using the given Executor.
When sendNotification is called, a listener is selected if it was added with a null NotificationFilter, or if isNotificationEnabled returns true for the notification being sent. The call toNotificationFilter.isNotificationEnabled
takes place in the thread that calledsendNotification
. Then, for each selected listener, executor.execute is called with a command that calls thehandleNotification
method.
If theinfo
array is not empty, then it is cloned by the constructor as if byinfo.clone()
, and each call to getNotificationInfo() returns a new clone.
Parameters:
executor
- an executor used by the methodsendNotification
to send each notification. If it is null, the thread callingsendNotification
will invoke thehandleNotification
method itself.
info
- an array indicating, for each notification this MBean may send, the name of the Java class of the notification and the notification type. Can be null, which is equivalent to an empty array.
Since:
1.6Method Details
addNotificationListener
Adds a listener.
Specified by:
[addNotificationListener](NotificationBroadcaster.html#addNotificationListener%28javax.management.NotificationListener,javax.management.NotificationFilter,java.lang.Object%29)
in interface[NotificationBroadcaster](NotificationBroadcaster.html "interface in javax.management")
Parameters:
listener
- The listener to receive notifications.
filter
- The filter object. If filter is null, no filtering will be performed before handling notifications.
handback
- An opaque object to be sent back to the listener when a notification is emitted. This object cannot be used by the Notification broadcaster object. It should be resent unchanged with the notification to the listener.
Throws:
[IllegalArgumentException](../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- thrown if the listener is null.
See Also:
removeNotificationListener(javax.management.NotificationListener)removeNotificationListener
Removes a listener from this MBean. If the listener has been registered with different handback objects or notification filters, all entries corresponding to the listener will be removed.
Specified by:
[removeNotificationListener](NotificationBroadcaster.html#removeNotificationListener%28javax.management.NotificationListener%29)
in interface[NotificationBroadcaster](NotificationBroadcaster.html "interface in javax.management")
Parameters:
listener
- A listener that was previously added to this MBean.
Throws:
[ListenerNotFoundException](ListenerNotFoundException.html "class in javax.management")
- The listener is not registered with the MBean.
See Also:
NotificationBroadcaster.addNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object), NotificationEmitter.removeNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object)removeNotificationListener
Removes a listener from this MBean. The MBean must have a listener that exactly matches the given
listener
,filter
, andhandback
parameters. If there is more than one such listener, only one is removed.
Thefilter
andhandback
parameters may be null if and only if they are null in a listener to be removed.
Specified by:
[removeNotificationListener](NotificationEmitter.html#removeNotificationListener%28javax.management.NotificationListener,javax.management.NotificationFilter,java.lang.Object%29)
in interface[NotificationEmitter](NotificationEmitter.html "interface in javax.management")
Parameters:
listener
- A listener that was previously added to this MBean.
filter
- The filter that was specified when the listener was added.
handback
- The handback that was specified when the listener was added.
Throws:
[ListenerNotFoundException](ListenerNotFoundException.html "class in javax.management")
- The listener is not registered with the MBean, or it is not registered with the given filter and handback.getNotificationInfo
Returns an array indicating, for each notification this MBean may send, the name of the Java class of the notification and the notification type.
It is not illegal for the MBean to send notifications not described in this array. However, some clients of the MBean server may depend on the array being complete for their correct functioning.
Specified by:
[getNotificationInfo](NotificationBroadcaster.html#getNotificationInfo%28%29)
in interface[NotificationBroadcaster](NotificationBroadcaster.html "interface in javax.management")
Returns:
the array of possible notifications.sendNotification
public void sendNotification​(Notification notification)
Sends a notification. If anExecutor
was specified in the constructor, it will be given one task per selected listener to deliver the notification to that listener.
Parameters:
notification
- The notification to send.handleNotification
This method is called by sendNotification for each listener in order to send the notification to that listener. It can be overridden in subclasses to change the behavior of notification delivery, for instance to deliver the notification in a separate thread.
The default implementation of this method is equivalent to
listener.handleNotification(notif, handback);Parameters:
listener
- the listener to which the notification is being delivered.
notif
- the notification being delivered to the listener.
handback
- the handback object that was supplied when the listener was added.