akka.actor.IO

SocketHandle

case class SocketHandle(owner: ActorRef, ioManager: ActorRef, uuid: UUID) extends ReadHandle with WriteHandle with Product with Serializable

A Handle to a SocketChannel. Instances are normally created by IOManager.connect() and ServerHandle.accept().

Linear Supertypes
Serializable, Serializable, WriteHandle, ReadHandle, Product, Equals, Handle, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. SocketHandle
  2. Serializable
  3. Serializable
  4. WriteHandle
  5. ReadHandle
  6. Product
  7. Equals
  8. Handle
  9. AnyRef
  10. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SocketHandle(owner: ActorRef, ioManager: ActorRef, uuid: UUID = new com.eaio.uuid.UUID())

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def asReadable: ReadHandle

    Definition Classes
    ReadHandleHandle
  8. def asServer: ServerHandle

    Definition Classes
    Handle
  9. def asSocket: SocketHandle

    Definition Classes
    SocketHandleHandle
  10. def asWritable: WriteHandle

    Definition Classes
    WriteHandleHandle
  11. def canEqual(arg0: Any): Boolean

    Definition Classes
    SocketHandle → Equals
  12. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def close(): Unit

    Sends a request to the IOManager to close the Channel associated with this Handle.

    Sends a request to the IOManager to close the Channel associated with this Handle.

    This can also be performed by sending Close to the IOManager.

    Definition Classes
    Handle
  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    SocketHandle → Equals → AnyRef → Any
  16. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  18. lazy val hashCode: Int

    Definition Classes
    Handle → AnyRef → Any
  19. val ioManager: ActorRef

    Definition Classes
    SocketHandleHandle
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. val owner: ActorRef

    Definition Classes
    SocketHandleHandle
  25. def productArity: Int

    Definition Classes
    SocketHandle → Product
  26. def productElement(arg0: Int): Any

    Definition Classes
    SocketHandle → Product
  27. def productIterator: Iterator[Any]

    Definition Classes
    Product
  28. def productPrefix: String

    Definition Classes
    SocketHandle → Product
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  30. def toString(): String

    Definition Classes
    SocketHandle → AnyRef → Any
  31. val uuid: UUID

    Definition Classes
    SocketHandleHandle
  32. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  33. final def wait(arg0: Long, arg1: Int): Unit

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  35. def write(bytes: ByteString): Unit

    Sends a request to the IOManager to write to the Channel associated with this Handle.

    Sends a request to the IOManager to write to the Channel associated with this Handle.

    This can also be performed by sending Write to the IOManager.

    Definition Classes
    WriteHandle

Deprecated Value Members

  1. def productElements: Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use productIterator instead

Inherited from Serializable

Inherited from Serializable

Inherited from WriteHandle

Inherited from ReadHandle

Inherited from Product

Inherited from Equals

Inherited from Handle

Inherited from AnyRef

Inherited from Any