t

akka.event

ManagedActorClassification

trait ManagedActorClassification extends AnyRef

Maps ActorRefs to ActorRefs to form an EventBus where ActorRefs can listen to other ActorRefs.

All subscribers will be watched by an akka.event.ActorClassificationUnsubscriber and unsubscribed when they terminate. The unsubscriber actor will not be stopped automatically, and if you want to stop using the bus you should stop it yourself.

Self Type
ManagedActorClassification with ActorEventBus with ActorClassifier
Source
EventBus.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ManagedActorClassification
  2. AnyRef
  3. 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

Concrete Value Members

  1. def publish(event: (ManagedActorClassification.this)#Event): Unit
  2. def subscribe(subscriber: (ManagedActorClassification.this)#Subscriber, to: (ManagedActorClassification.this)#Classifier): Boolean
  3. def unsubscribe(subscriber: (ManagedActorClassification.this)#Subscriber): Unit
  4. def unsubscribe(subscriber: (ManagedActorClassification.this)#Subscriber, from: (ManagedActorClassification.this)#Classifier): Boolean