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. Protected

Type Members

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

    Reply to GetTopics.

    Reply to GetTopics.

    Annotations
    @SerialVersionUID()
  4. sealed abstract class GetTopics extends AnyRef
  5. final case class Publish(topic: String, msg: Any, sendOneMessageToEachGroup: Boolean) extends DistributedPubSubMessage with WrappedMessage with Product with Serializable
    Annotations
    @SerialVersionUID()
  6. final case class Put(ref: ActorRef) extends Product with Serializable
    Annotations
    @SerialVersionUID()
  7. final case class Remove(path: String) extends Product with Serializable
    Annotations
    @SerialVersionUID()
  8. final case class Send(path: String, msg: Any, localAffinity: Boolean) extends DistributedPubSubMessage with WrappedMessage with Product with Serializable
    Annotations
    @SerialVersionUID()
  9. final case class SendToAll(path: String, msg: Any, allButSelf: Boolean = false) extends DistributedPubSubMessage with WrappedMessage with Product with Serializable
    Annotations
    @SerialVersionUID()
  10. final case class Subscribe(topic: String, group: Option[String], ref: ActorRef) extends Product with Serializable
    Annotations
    @SerialVersionUID()
  11. final case class SubscribeAck(subscribe: Subscribe) extends DeadLetterSuppression with Product with Serializable
    Annotations
    @SerialVersionUID()
  12. final case class Unsubscribe(topic: String, group: Option[String], ref: ActorRef) extends Product with Serializable
    Annotations
    @SerialVersionUID()
  13. 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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def getCountInstance: Count

    Java API: Send this message to the mediator and it will reply with an Integer of the number of subscribers.

  10. 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.

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

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

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

    Scala API: Send this message to the mediator and it will reply with an Int of the number of subscribers.

    Scala API: Send this message to the mediator and it will reply with an Int of the number of subscribers. Only for testing purposes, to poll/await replication.

  23. case 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()
  24. object Publish extends Serializable
  25. object Subscribe extends Serializable
  26. object Unsubscribe extends Serializable

Deprecated Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped