c

vertices.core

VertxNetSocketOps

implicit final class VertxNetSocketOps extends AnyVal

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VertxNetSocketOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new VertxNetSocketOps(target: NetSocket)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def closeL(): Task[Unit]

    Close the NetSocket and notify the handler when the operation completes.

  6. def endL(): Task[Unit]

    Calls #end(Handler)

  7. def endL(data: Buffer): Task[Unit]

    Same as #end(T) but with an handler called when the operation completes

  8. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  9. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  10. def pipeToL(dst: WriteStream[Buffer]): Task[Unit]

    Pipe this ReadStream to the WriteStream.

    Pipe this ReadStream to the WriteStream.

    Elements emitted by this stream will be written to the write stream until this stream ends or fails.

    Once this stream has ended or failed, the write stream will be ended and the handler will be called with the result.

    dst

    the destination write stream

  11. def sendFileL(filename: String, offset: Long, length: Long): Task[Unit]

    Same as long, long) but also takes a handler that will be called when the send has completed or a failure has occurred

    Same as long, long) but also takes a handler that will be called when the send has completed or a failure has occurred

    filename

    file name of the file to send

    offset

    offset

    length

    length

    returns

    a reference to this, so the API can be used fluently

  12. def sendFileL(filename: String, offset: Long): Task[Unit]

    Same as long) but also takes a handler that will be called when the send has completed or a failure has occurred

    Same as long) but also takes a handler that will be called when the send has completed or a failure has occurred

    filename

    file name of the file to send

    offset

    offset

    returns

    a reference to this, so the API can be used fluently

  13. def sendFileL(filename: String): Task[Unit]

    Same as #sendFile(String) but also takes a handler that will be called when the send has completed or a failure has occurred

    Same as #sendFile(String) but also takes a handler that will be called when the send has completed or a failure has occurred

    filename

    file name of the file to send

    returns

    a reference to this, so the API can be used fluently

  14. val target: NetSocket
  15. def toString(): String
    Definition Classes
    Any
  16. def writeL(message: Buffer): Task[Unit]

    Like #write(Object) but with an handler called when the message has been written or failed to be written.

  17. def writeL(str: String, enc: String): Task[Unit]

    Same as String) but with an handler called when the operation completes

  18. def writeL(str: String): Task[Unit]

    Same as #write(String) but with an handler called when the operation completes

Inherited from AnyVal

Inherited from Any

Ungrouped