Lines Matching refs:notification

41  * <p>By default, the notification dispatch model is synchronous.
57 * not guaranteed that any remote listeners have yet received the notification.</p>
64 * thread sending the notification. This constructor is equivalent to
77 * isNotificationEnabled} returns true for the notification being sent. The call to
86 * send each notification. If it is null, the thread calling <code>sendNotification</code>
97 * invoked by the thread sending the notification. This
108 * @param info an array indicating, for each notification this
109 * MBean may send, the name of the Java class of the notification
110 * and the notification type. Can be null, which is equivalent to
127 * returns true for the notification being sent. The call to
141 * <code>sendNotification</code> to send each notification. If it
145 * @param info an array indicating, for each notification this
146 * MBean may send, the name of the Java class of the notification
147 * and the notification type. Can be null, which is equivalent to
166 * listener when a notification is emitted. This object cannot be
168 * resent unchanged with the notification to the listener.
219 * Sends a notification.
222 * task per selected listener to deliver the notification to that listener.
224 * @param notification The notification to send.
226 public void sendNotification(Notification notification) {
228 if (notification == null) {
237 li.filter.isNotificationEnabled(notification);
247 executor.execute(new SendNotifJob(notification, li));
255 * notification to that listener. It can be overridden in
256 * subclasses to change the behavior of notification delivery,
257 * for instance to deliver the notification in a separate
265 * @param listener the listener to which the notification is being
267 * @param notif the notification being delivered to the listener.