trait ActorEventBus extends EventBus
Ordering
- Alphabetic
- By Inheritance
Inherited
- ActorEventBus
- EventBus
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
Abstract Value Members
- abstract def publish(event: Event): Unit
Publishes the specified Event to this bus
Publishes the specified Event to this bus
- Definition Classes
- EventBus
- abstract def subscribe(subscriber: Subscriber, to: Classifier): Boolean
Attempts to register the subscriber to the specified Classifier
Attempts to register the subscriber to the specified Classifier
- returns
true if successful and false if not (because it was already subscribed to that Classifier, or otherwise)
- Definition Classes
- EventBus
- abstract def unsubscribe(subscriber: Subscriber): Unit
Attempts to deregister the subscriber from all Classifiers it may be subscribed to
Attempts to deregister the subscriber from all Classifiers it may be subscribed to
- Definition Classes
- EventBus
- abstract def unsubscribe(subscriber: Subscriber, from: Classifier): Boolean
Attempts to deregister the subscriber from the specified Classifier
Attempts to deregister the subscriber from the specified Classifier
- returns
true if successful and false if not (because it wasn't subscribed to that Classifier, or otherwise)
- Definition Classes
- EventBus
Represents an EventBus where the Subscriber type is ActorRef