akka.event.japi

ActorEventBus

abstract class ActorEventBus[E] extends ActorEventBus with ActorClassification with ActorClassifier

See documentation for ActorClassification An EventBus where the Subscribers are ActorRefs and the Classifier is ActorRef Means that ActorRefs "listen" to other ActorRefs E is the Event type

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. ActorEventBus
  2. ActorClassifier
  3. ActorClassification
  4. ActorEventBus
  5. EventBus
  6. AnyRef
  7. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ActorEventBus()

Type Members

  1. type Classifier = ActorRef

    Definition Classes
    ActorClassifier
  2. abstract type Event

    Definition Classes
    EventBus
  3. type Subscriber = ActorRef

    Definition Classes
    ActorEventBusEventBus

Abstract Value Members

  1. abstract def classify(event: Event): Classifier

    Returns the Classifier associated with the specified Event

    Returns the Classifier associated with the specified Event

    Attributes
    protected
    Definition Classes
    ActorClassification
  2. abstract def mapSize: Int

    This is a size hint for the number of Classifiers you expect to have (use powers of 2)

    This is a size hint for the number of Classifiers you expect to have (use powers of 2)

    Attributes
    protected
    Definition Classes
    ActorClassification

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. final def associate(monitored: ActorRef, monitor: ActorRef): Boolean

    Attributes
    protected
    Definition Classes
    ActorClassification
    Annotations
    @tailrec()
  8. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def compareSubscribers(a: ActorRef, b: ActorRef): Int

    Attributes
    protected
    Definition Classes
    ActorEventBus
  10. final def dissociate(monitored: ActorRef, monitor: ActorRef): Boolean

    Attributes
    protected
    Definition Classes
    ActorClassification
    Annotations
    @tailrec()
  11. final def dissociate(monitored: ActorRef): Iterable[ActorRef]

    Attributes
    protected
    Definition Classes
    ActorClassification
  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. val mappings: ConcurrentHashMap[ActorRef, Vector[ActorRef]]

    Attributes
    protected
    Definition Classes
    ActorClassification
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. def publish(event: Event): Unit

    Definition Classes
    ActorClassification
  23. def subscribe(subscriber: Subscriber, to: Classifier): Boolean

    Definition Classes
    ActorClassification
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. def unsubscribe(subscriber: Subscriber): Unit

    Definition Classes
    ActorClassification
  27. def unsubscribe(subscriber: Subscriber, from: Classifier): Boolean

    Definition Classes
    ActorClassification
  28. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  29. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from ActorClassifier

Inherited from ActorClassification

Inherited from ActorEventBus

Inherited from EventBus

Inherited from AnyRef

Inherited from Any