|
Java example source code file (NotificationEmitter.java)
The NotificationEmitter.java Java example source code/* * Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package javax.management; import java.util.concurrent.CopyOnWriteArrayList; // for Javadoc /** * <p>Interface implemented by an MBean that emits Notifications. It * allows a listener to be registered with the MBean as a notification * listener.</p> * * <h3>Notification dispatch * *<p>When an MBean emits a notification, it considers each listener that has been * added with {@link #addNotificationListener addNotificationListener} and not * subsequently removed with {@link #removeNotificationListener removeNotificationListener}. * If a filter was provided with that listener, and if the filter's * {@link NotificationFilter#isNotificationEnabled isNotificationEnabled} method returns * false, the listener is ignored. Otherwise, the listener's * {@link NotificationListener#handleNotification handleNotification} method is called with * the notification, as well as the handback object that was provided to * {@code addNotificationListener}.</p> * * <p>If the same listener is added more than once, it is considered as many times as it was * added. It is often useful to add the same listener with different filters or handback * objects.</p> * * <p>Implementations of this interface can differ regarding the thread in which the methods * of filters and listeners are called.</p> * * <p>If the method call of a filter or listener throws an {@link Exception}, then that * exception should not prevent other listeners from being invoked. However, if the method * call throws an {@link Error}, then it is recommended that processing of the notification * stop at that point, and if it is possible to propagate the {@code Error} to the sender of * the notification, this should be done.</p> * * <p>This interface should be used by new code in preference to the * {@link NotificationBroadcaster} interface.</p> * * <p>Implementations of this interface and of {@code NotificationBroadcaster} * should be careful about synchronization. In particular, it is not a good * idea for an implementation to hold any locks while it is calling a * listener. To deal with the possibility that the list of listeners might * change while a notification is being dispatched, a good strategy is to * use a {@link CopyOnWriteArrayList} for this list. * * @since 1.5 */ public interface NotificationEmitter extends NotificationBroadcaster { /** * <p>Removes a listener from this MBean. The MBean must have a * listener that exactly matches the given <code>listener, * <code>filter, and Other Java examples (source code examples)Here is a short list of links related to this Java NotificationEmitter.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.