c

redis.actors

RedisWorkerIO

abstract class RedisWorkerIO extends Actor with ActorLogging

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisWorkerIO
  2. ActorLogging
  3. Actor
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RedisWorkerIO(address: InetSocketAddress, onConnectStatus: (Boolean) => Unit, connectTimeout: Option[FiniteDuration] = None)

Type Members

  1. type Receive = PartialFunction[Any, Unit]
    Definition Classes
    Actor

Abstract Value Members

  1. abstract def onClosingConnectionClosed(): Unit
  2. abstract def onConnectWrite(): ByteString
  3. abstract def onConnectionClosed(): Unit
  4. abstract def onDataReceived(dataByteString: ByteString): Unit
  5. abstract def onDataReceivedOnClosingConnection(dataByteString: ByteString): Unit
  6. abstract def onWriteSent(): Unit
  7. abstract def writing: Receive

Concrete 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. val address: InetSocketAddress
  5. def aroundPostRestart(reason: Throwable): Unit
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  6. def aroundPostStop(): Unit
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  7. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  8. def aroundPreStart(): Unit
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  9. def aroundReceive(receive: akka.actor.Actor.Receive, msg: Any): Unit
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. val bufferWrite: ByteStringBuilder
  12. def cleanState(): Unit
  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  14. def connected: Receive
  15. def connecting: Receive
  16. implicit val context: ActorContext
    Definition Classes
    Actor
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def initConnectedBuffer(): Unit
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def log: LoggingAdapter
    Definition Classes
    ActorLogging
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. def onAddressChanged(addr: InetSocketAddress): Unit
  28. def onConnected(cmd: Connected): Unit
  29. def onConnectedCommandFailed(commandFailed: CommandFailed): Unit

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

  30. def onConnectingCommandFailed(cmdFailed: CommandFailed): Unit
  31. def onConnectionClosed(c: ConnectionClosed): Unit
  32. def postRestart(reason: Throwable): Unit
    Definition Classes
    Actor
    Annotations
    @throws(classOf[java.lang.Exception])
  33. def postStop(): Unit
    Definition Classes
    RedisWorkerIO → Actor
  34. def preRestart(reason: Throwable, message: Option[Any]): Unit
    Definition Classes
    Actor
    Annotations
    @throws(classOf[java.lang.Exception])
  35. def preStart(): Unit
    Definition Classes
    RedisWorkerIO → Actor
  36. var readyToWrite: Boolean
  37. def receive: PartialFunction[Any, Unit]
    Definition Classes
    RedisWorkerIO → Actor
  38. def reconnect(): Unit
  39. def reconnectDuration: FiniteDuration
  40. def restartConnection(): Unit
  41. def scheduleReconnect(): Unit
  42. implicit final val self: ActorRef
    Definition Classes
    Actor
  43. final def sender(): ActorRef
    Definition Classes
    Actor
  44. def supervisorStrategy: SupervisorStrategy
    Definition Classes
    Actor
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. val tcp: ActorRef
  47. var tcpWorker: ActorRef
  48. def toString(): String
    Definition Classes
    AnyRef → Any
  49. def tryInitialWrite(): Unit
  50. def tryWrite(): Unit
  51. def unhandled(message: Any): Unit
    Definition Classes
    Actor
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  54. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  55. def write(byteString: ByteString): Unit

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from ActorLogging

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped