object PubSubMessage
Contains all pub/sub messages.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PubSubMessage
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final case class Error(exception: Throwable) extends PubSubMessage with Product with Serializable
This message is triggered if an error occurs.
- final case class Message(channel: String, message: Array[Byte]) extends PubSubMessage with Product with Serializable
This message is triggered when a message is received.
- final case class PMessage(pattern: String, channel: String, message: Array[Byte]) extends PubSubMessage with Product with Serializable
This message is triggered when a message that matches a pattern is received.
- final case class PSubscribe(pattern: String, patternsCount: Int) extends PubSubMessage with Product with Serializable
This message is triggered after we successfully subscribed to a pattern.
- final case class PUnsubscribe(patternOpt: Option[String], patternsCount: Int) extends PubSubMessage with Product with Serializable
This message is triggered after we successfully unsubscribed from a pattern.
- final case class Subscribe(channel: String, channelsCount: Int) extends PubSubMessage with Product with Serializable
This message is triggered after we successfully subscribed to a channel.
- final case class Unsubscribe(channelOpt: Option[String], channelsCount: Int) extends PubSubMessage with Product with Serializable
This message is triggered after we successfully unsubscribed from a channel.
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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @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
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()