Package akka.event.japi
Class ScanningEventBus<E,S,C>
- java.lang.Object
-
- akka.event.japi.ScanningEventBus<E,S,C>
-
- All Implemented Interfaces:
EventBus<E,S,C>
public abstract class ScanningEventBus<E,S,C> extends java.lang.Object implements EventBus<E,S,C>
Java API: See documentation forScanningClassification
E is the Event type S is the Subscriber type C is the Classifier type
-
-
Constructor Summary
Constructors Constructor Description ScanningEventBus()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract int
compareClassifiers(C a, C b)
Provides a total ordering of Classifiers (think java.util.Comparator.compare)protected abstract int
compareSubscribers(S a, S b)
Provides a total ordering of Subscribers (think java.util.Comparator.compare)protected abstract boolean
matches(C classifier, E event)
Returns whether the specified Classifier matches the specified Eventvoid
publish(E event)
Publishes the specified Event to this busprotected abstract void
publish(E event, S subscriber)
Publishes the specified Event to the specified Subscriberboolean
subscribe(S subscriber, C to)
Attempts to register the subscriber to the specified Classifiervoid
unsubscribe(S subscriber)
Attempts to deregister the subscriber from all Classifiers it may be subscribed toboolean
unsubscribe(S subscriber, C from)
Attempts to deregister the subscriber from the specified Classifier
-
-
-
Method Detail
-
compareClassifiers
protected abstract int compareClassifiers(C a, C b)
Provides a total ordering of Classifiers (think java.util.Comparator.compare)
-
compareSubscribers
protected abstract int compareSubscribers(S a, S b)
Provides a total ordering of Subscribers (think java.util.Comparator.compare)
-
matches
protected abstract boolean matches(C classifier, E event)
Returns whether the specified Classifier matches the specified Event
-
publish
protected abstract void publish(E event, S subscriber)
Publishes the specified Event to the specified Subscriber
-
publish
public void publish(E event)
Description copied from interface:EventBus
Publishes the specified Event to this bus
-
subscribe
public boolean subscribe(S subscriber, C to)
Description copied from interface:EventBus
Attempts to register the subscriber to the specified Classifier
-
unsubscribe
public boolean unsubscribe(S subscriber, C from)
Description copied from interface:EventBus
Attempts to deregister the subscriber from the specified Classifier- Specified by:
unsubscribe
in interfaceEventBus<E,S,C>
- Returns:
- true if successful and false if not (because it wasn't subscribed to that Classifier, or otherwise)
-
-