class ActorPublisher[T] extends Publisher[T]

INTERNAL API

When you instantiate this class, or its subclasses, you MUST send an ExposedPublisher message to the wrapped ActorRef! If you don't need to subclass, prefer the apply() method on the companion object which takes care of this.

Source
ActorPublisher.scala
Linear Supertypes
Publisher[T], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorPublisher
  2. Publisher
  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 ActorPublisher(impl: ActorRef)

Value Members

  1. val impl: ActorRef
  2. def shutdown(reason: Option[Throwable]): Unit
  3. def subscribe(subscriber: Subscriber[_ >: T]): Unit
    Definition Classes
    ActorPublisher → Publisher
  4. def takePendingSubscribers(): Seq[Subscriber[_ >: T]]