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[pekko]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  6. def aroundPostStop(): Unit
    Attributes
    protected[pekko]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  7. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit
    Attributes
    protected[pekko]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  8. def aroundPreStart(): Unit
    Attributes
    protected[pekko]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  9. def aroundReceive(receive: org.apache.pekko.actor.Actor.Receive, msg: Any): Unit
    Attributes
    protected[pekko]
    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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  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: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def initConnectedBuffer(): Unit
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def log: LoggingAdapter
    Definition Classes
    ActorLogging
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def onAddressChanged(addr: InetSocketAddress): Unit
  29. def onConnected(cmd: Connected): Unit
  30. def onConnectedCommandFailed(commandFailed: CommandFailed): Unit

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

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

Inherited from ActorLogging

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped