EventMulticaster

org.beangle.commons.event.EventMulticaster

EventMulticaster interface.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

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.

Attributes

def multicast(e: Event): Unit

multicast.

multicast.

Attributes

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.

Attributes

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

Remove a listener from the notification list.

Remove a listener from the notification list.

Attributes