implicit final class VertxWebSocketOps extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- VertxWebSocketOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new VertxWebSocketOps(target: WebSocket)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##(): Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def closeL(statusCode: Short, reason: String): Task[Unit]
Same as
String)but with anhandlercalled when the operation completes - def closeL(statusCode: Short): Task[Unit]
Same as
#close(short)but with anhandlercalled when the operation completes - def closeL(): Task[Unit]
Same as
#close()but with anhandlercalled when the operation completes - def endL(): Task[Unit]
Calls
#close(Handler) - def endL(data: Buffer): Task[Unit]
Same as
#end(T)but with anhandlercalled when the operation completes - def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def pipeToL(dst: WriteStream[Buffer]): Task[Unit]
Pipe this
ReadStreamto theWriteStream.Pipe this
ReadStreamto theWriteStream.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
handlerwill be called with the result.- dst
the destination write stream
- val target: WebSocket
- def toString(): String
- Definition Classes
- Any
- def writeBinaryMessageL(data: Buffer): Task[Unit]
- def writeFinalBinaryFrameL(data: Buffer): Task[Unit]
- def writeFinalTextFrameL(text: String): Task[Unit]
- def writeFrameL(frame: WebSocketFrame): Task[Unit]
- def writeL(data: Buffer): Task[Unit]
- def writeTextMessageL(text: String): Task[Unit]