Class

redis.actors

RedisSubscriberActor

Related Doc: package actors

Permalink

abstract class RedisSubscriberActor extends RedisWorkerIO with DecodeReplies

Source
RedisSubscriberActor.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisSubscriberActor
  2. DecodeReplies
  3. RedisWorkerIO
  4. ActorLogging
  5. Actor
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RedisSubscriberActor(address: InetSocketAddress, channels: Seq[String], patterns: Seq[String], authPassword: Option[String] = None, onConnectStatus: (Boolean) ⇒ Unit)

    Permalink

Type Members

  1. type Receive = PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    Actor

Abstract Value Members

  1. abstract def onMessage(m: Message): Unit

    Permalink
  2. abstract def onPMessage(pm: PMessage): Unit

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val address: InetSocketAddress

    Permalink
    Definition Classes
    RedisWorkerIO
  5. def aroundPostRestart(reason: Throwable): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  6. def aroundPostStop(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  7. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  8. def aroundPreStart(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  9. def aroundReceive(receive: akka.actor.Actor.Receive, msg: Any): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. val bufferWrite: ByteStringBuilder

    Permalink
    Definition Classes
    RedisWorkerIO
  12. var channelsSubscribed: Set[String]

    Permalink

    Keep states of channels and actor in case of connection reset

  13. def cleanState(): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  15. def connected: Receive

    Permalink
    Definition Classes
    RedisWorkerIO
  16. def connecting: Receive

    Permalink
    Definition Classes
    RedisWorkerIO
  17. implicit val context: ActorContext

    Permalink
    Definition Classes
    Actor
  18. def decodeReplies(dataByteString: ByteString): Unit

    Permalink
    Definition Classes
    DecodeReplies
  19. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  23. def initConnectedBuffer(): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. def log: LoggingAdapter

    Permalink
    Definition Classes
    ActorLogging
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  29. def onAddressChanged(addr: InetSocketAddress): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  30. def onClosingConnectionClosed(): Unit

    Permalink
    Definition Classes
    RedisSubscriberActorRedisWorkerIO
  31. def onConnectWrite(): ByteString

    Permalink
    Definition Classes
    RedisSubscriberActorRedisWorkerIO
  32. def onConnected(cmd: Connected): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  33. def onConnectedCommandFailed(commandFailed: CommandFailed): Unit

    Permalink

    O/S buffer was full Maybe to much data in the Command ?

    O/S buffer was full Maybe to much data in the Command ?

    Definition Classes
    RedisWorkerIO
  34. def onConnectingCommandFailed(cmdFailed: CommandFailed): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  35. def onConnectionClosed(): Unit

    Permalink
    Definition Classes
    RedisSubscriberActorRedisWorkerIO
  36. def onConnectionClosed(c: ConnectionClosed): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  37. def onDataReceived(dataByteString: ByteString): Unit

    Permalink
    Definition Classes
    RedisSubscriberActorRedisWorkerIO
  38. def onDataReceivedOnClosingConnection(dataByteString: ByteString): Unit

    Permalink
    Definition Classes
    RedisSubscriberActorRedisWorkerIO
  39. def onDecodedReply(reply: RedisReply): Unit

    Permalink
    Definition Classes
    RedisSubscriberActorDecodeReplies
  40. def onErrorReply(error: Error): Unit

    Permalink
  41. def onWriteSent(): Unit

    Permalink
    Definition Classes
    RedisSubscriberActorRedisWorkerIO
  42. var partiallyDecoded: DecodeResult[Unit]

    Permalink
    Definition Classes
    DecodeReplies
  43. var patternsSubscribed: Set[String]

    Permalink
  44. def postRestart(reason: Throwable): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  45. def postStop(): Unit

    Permalink
    Definition Classes
    RedisWorkerIO → Actor
  46. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  47. def preStart(): Unit

    Permalink
    Definition Classes
    RedisSubscriberActorRedisWorkerIO → Actor
  48. def psubscribe(patterns: String*): Unit

    Permalink
  49. def punsubscribe(patterns: String*): Unit

    Permalink
  50. var readyToWrite: Boolean

    Permalink
    Definition Classes
    RedisWorkerIO
  51. def receive: PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    RedisWorkerIO → Actor
  52. def reconnect(): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  53. def reconnectDuration: FiniteDuration

    Permalink
    Definition Classes
    RedisWorkerIO
  54. def restartConnection(): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  55. def scheduleReconnect(): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  56. implicit final val self: ActorRef

    Permalink
    Definition Classes
    Actor
  57. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  58. def subscribe(channels: String*): Unit

    Permalink
  59. def supervisorStrategy: SupervisorStrategy

    Permalink
    Definition Classes
    Actor
  60. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  61. val tcp: ActorRef

    Permalink
    Definition Classes
    RedisWorkerIO
  62. var tcpWorker: ActorRef

    Permalink
    Definition Classes
    RedisWorkerIO
  63. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  64. def tryInitialWrite(): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  65. def tryWrite(): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  66. def unhandled(message: Any): Unit

    Permalink
    Definition Classes
    Actor
  67. def unsubscribe(channels: String*): Unit

    Permalink
  68. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  69. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  70. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  71. def write(byteString: ByteString): Unit

    Permalink
    Definition Classes
    RedisWorkerIO
  72. def writing: Receive

    Permalink
    Definition Classes
    RedisSubscriberActorRedisWorkerIO

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    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 DecodeReplies

Inherited from RedisWorkerIO

Inherited from ActorLogging

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped