Packages

object DistributedPubSubMediator

Source
DistributedPubSubMediator.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DistributedPubSubMediator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class CountSubscribers(topic: String) extends Product with Serializable
  2. final case class CurrentTopics(topics: Set[String]) extends Product with Serializable

    Reply to GetTopics.

    Reply to GetTopics.

    Annotations
    @SerialVersionUID()
  3. sealed abstract class GetTopics extends AnyRef
  4. final case class Publish(topic: String, msg: Any, sendOneMessageToEachGroup: Boolean) extends DistributedPubSubMessage with Product with Serializable
    Annotations
    @SerialVersionUID()
  5. final case class Put(ref: ActorRef) extends Product with Serializable
    Annotations
    @SerialVersionUID()
  6. final case class Remove(path: String) extends Product with Serializable
    Annotations
    @SerialVersionUID()
  7. final case class Send(path: String, msg: Any, localAffinity: Boolean) extends DistributedPubSubMessage with Product with Serializable
    Annotations
    @SerialVersionUID()
  8. final case class SendToAll(path: String, msg: Any, allButSelf: Boolean = false) extends DistributedPubSubMessage with Product with Serializable
    Annotations
    @SerialVersionUID()
  9. final case class Subscribe(topic: String, group: Option[String], ref: ActorRef) extends Product with Serializable
    Annotations
    @SerialVersionUID()
  10. final case class SubscribeAck(subscribe: Subscribe) extends DeadLetterSuppression with Product with Serializable
    Annotations
    @SerialVersionUID()
  11. final case class Unsubscribe(topic: String, group: Option[String], ref: ActorRef) extends Product with Serializable
    Annotations
    @SerialVersionUID()
  12. final case class UnsubscribeAck(unsubscribe: Unsubscribe) extends Product with Serializable
    Annotations
    @SerialVersionUID()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def getTopicsInstance: GetTopics

    Java API: Send this message to the mediator and it will reply with DistributedPubSubMediator.CurrentTopics containing the names of the (currently known) registered topic names.

  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def props(settings: DistributedPubSubSettings): Props

    Scala API: Factory method for DistributedPubSubMediator akka.actor.Props.

  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. object Count extends Product with Serializable
  22. object GetTopics extends GetTopics with Product with Serializable

    Send this message to the mediator and it will reply with CurrentTopics containing the names of the (currently known) registered topic names.

    Send this message to the mediator and it will reply with CurrentTopics containing the names of the (currently known) registered topic names.

    Annotations
    @SerialVersionUID()
  23. object Publish extends Serializable
  24. object Subscribe extends Serializable
  25. object Unsubscribe extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped