abstract class ScanningEventBus[E, S, C] extends EventBus[E, S, C]
Ordering
- Alphabetic
- By Inheritance
Inherited
- ScanningEventBus
- EventBus
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ScanningEventBus()
Concrete Value Members
- def publish(event: E): Unit
Publishes the specified Event to this bus
Publishes the specified Event to this bus
- Definition Classes
- → EventBus
- def subscribe(subscriber: S, to: C): 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
- def unsubscribe(subscriber: S): 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
- def unsubscribe(subscriber: S, from: C): 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
Java API: See documentation for akka.event.ScanningClassification E is the Event type S is the Subscriber type C is the Classifier type