EventMulticaster

EventMulticaster interface.

class Object
trait Matchable
class Any

Value members

Abstract methods

def addListener(listener: EventListener[_]): Unit

Add a listener to be notified of all events.

Add a listener to be notified of all events.

def multicast(e: Event): Unit

multicast.

multicast.

def removeAllListeners(): Unit

Remove all listeners registered with this multicaster.

Remove all listeners registered with this multicaster.

After a remove call, the multicaster will perform no action on event notification until new listeners are being registered.

def removeListener(listener: EventListener[_]): Unit

Remove a listener from the notification list.

Remove a listener from the notification list.