Packages

c

akka.event.japi

ManagedActorEventBus

abstract class ManagedActorEventBus[E] extends EventBus[E, ActorRef, ActorRef]

Java API: See documentation for akka.event.ManagedActorClassification An EventBus where the Subscribers are ActorRefs and the Classifier is ActorRef Means that ActorRefs "listen" to other ActorRefs E is the Event type

Source
EventBusJavaAPI.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ManagedActorEventBus
  2. EventBus
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ManagedActorEventBus(system: ActorSystem)

Concrete Value Members

  1. def publish(event: E): Unit

    Publishes the specified Event to this bus

    Publishes the specified Event to this bus

    Definition Classes
    ManagedActorEventBusEventBus
  2. def subscribe(subscriber: ActorRef, to: ActorRef): 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
    ManagedActorEventBusEventBus
  3. def unsubscribe(subscriber: ActorRef): 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
    ManagedActorEventBusEventBus
  4. def unsubscribe(subscriber: ActorRef, from: ActorRef): 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
    ManagedActorEventBusEventBus