| |
|
| java.lang.Object org.apache.beehive.controls.runtime.bean.UnicastEventNotifier
UnicastEventNotifier | public class UnicastEventNotifier implements java.io.Serializable(Code) | | The UnicastEventNotifier class provides basic callback listener management and event delivery
services for unicast EventSets on ControlBean instances.
|
addListener | public synchronized void addListener(Object listener) throws TooManyListenersException(Code) | | Adds a new callback event listener for this EventNotifier. This method will also
perform a check to see if there is already a register listener, and throw a
java.util.TooManyListenersException if there is already a registered
listener.
|
getListener | public Object getListener()(Code) | | Returns the listener associated with this EventNotifier
|
getListenerCount | public int getListenerCount()(Code) | | Returns the number of registered listeners
|
getListeners | public void getListeners(Object[] listeners)(Code) | | Returns the listener list in array form
|
removeListener | public synchronized void removeListener(Object listener)(Code) | | Remove an existing callback event listener for this EventNotifier
|
|
|
|