object DistributedPubSubMediator
- Alphabetic
- By Inheritance
- DistributedPubSubMediator
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
-  sealed abstract class Count extends AnyRef
-  final case class CountSubscribers(topic: String) extends Product with Serializable
-   final  case class CurrentTopics(topics: Set[String]) extends Product with SerializableReply to GetTopics.Reply to GetTopics.- Annotations
- @SerialVersionUID()
 
-  sealed abstract class GetTopics extends AnyRef
-   final  case class Publish(topic: String, msg: Any, sendOneMessageToEachGroup: Boolean) extends DistributedPubSubMessage with WrappedMessage with Product with Serializable- Annotations
- @SerialVersionUID()
 
-   final  case class Put(ref: ActorRef) extends Product with Serializable- Annotations
- @SerialVersionUID()
 
-   final  case class Remove(path: String) extends Product with Serializable- Annotations
- @SerialVersionUID()
 
-   final  case class Send(path: String, msg: Any, localAffinity: Boolean) extends DistributedPubSubMessage with WrappedMessage with Product with Serializable- Annotations
- @SerialVersionUID()
 
-   final  case class SendToAll(path: String, msg: Any, allButSelf: Boolean = false) extends DistributedPubSubMessage with WrappedMessage with Product with Serializable- Annotations
- @SerialVersionUID()
 
-   final  case class Subscribe(topic: String, group: Option[String], ref: ActorRef) extends Product with Serializable- Annotations
- @SerialVersionUID()
 
-   final  case class SubscribeAck(subscribe: Subscribe) extends DeadLetterSuppression with Product with Serializable- Annotations
- @SerialVersionUID()
 
-   final  case class Unsubscribe(topic: String, group: Option[String], ref: ActorRef) extends Product with Serializable- Annotations
- @SerialVersionUID()
 
-   final  case class UnsubscribeAck(unsubscribe: Unsubscribe) extends Product with Serializable- Annotations
- @SerialVersionUID()
 
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-    def getCountInstance: CountJava API: Send this message to the mediator and it will reply with an Integerof the number of subscribers.
-    def getTopicsInstance: GetTopicsJava API: Send this message to the mediator and it will reply with DistributedPubSubMediator.CurrentTopics containing the names of the (currently known) registered topic names. 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-    def props(settings: DistributedPubSubSettings): PropsScala API: Factory method for DistributedPubSubMediatorakka.actor.Props.
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-    case object Count extends Count with Product with SerializableScala API: Send this message to the mediator and it will reply with an Intof the number of subscribers.Scala API: Send this message to the mediator and it will reply with an Intof the number of subscribers. Only for testing purposes, to poll/await replication.
-    case object GetTopics extends GetTopics with Product with SerializableSend 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()
 
-  object Publish extends Serializable
-  object Subscribe extends Serializable
-  object Unsubscribe extends Serializable