class ServerWebSocket extends WebSocketBase

Represents a server side WebSocket.

Instances of this class are passed into a io.vertx.scala.core.http.HttpServer#websocketHandler or provided when a WebSocket handshake is manually io.vertx.scala.core.http.HttpServerRequest#upgradeed.

Linear Supertypes
WebSocketBase, WriteStream[Buffer], ReadStream[Buffer], StreamBase, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ServerWebSocket
  2. WebSocketBase
  3. WriteStream
  4. ReadStream
  5. StreamBase
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ServerWebSocket(_asJava: AnyRef)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asJava: AnyRef
  6. def binaryHandlerID(): String

    When a Websocket is created it automatically registers an event handler with the event bus - the ID of that handler is given by this method.

    When a Websocket is created it automatically registers an event handler with the event bus - the ID of that handler is given by this method.

    Given this ID, a different event loop can send a binary frame to that event handler using the event bus and that buffer will be received by this instance in its own event loop and written to the underlying connection. This allows you to write data to other WebSockets which are owned by different event loops.

    returns

    the binary handler id

    Definition Classes
    ServerWebSocketWebSocketBase
  7. def binaryMessageHandler(handler: Handler[Buffer]): WebSocketBase

    Set a binary message handler on the connection.

    Set a binary message handler on the connection. This handler serves a similar purpose to io.vertx.scala.core.http.ServerWebSocket#handler except that if a message comes into the socket in multiple frames, the data from the frames will be aggregated into a single buffer before calling the handler (using io.vertx.scala.core.http.WebSocketFrame#isFinal to find the boundaries).

    handler

    the handler

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def close(): Unit

    Close the WebSocket.

    Close the WebSocket.

    Definition Classes
    ServerWebSocketWebSocketBase
  10. def closeHandler(handler: Handler[Unit]): ServerWebSocket

    Set a close handler.

    Set a close handler. This will be called when the WebSocket is closed.

    handler

    the handler

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase
  11. def drainHandler(handler: Handler[Unit]): ServerWebSocket

    Set a drain handler on the stream.

    Set a drain handler on the stream. If the write queue is full, then the handler will be called when the write queue is ready to accept buffers again. See io.vertx.scala.core.streams.Pump for an example of this being used.

    The stream implementation defines when the drain handler, for example it could be when the queue size has been reduced to maxSize / 2.

    handler

    the handler

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBaseWriteStream
  12. def end(): Unit

    Calls io.vertx.scala.core.http.WebSocketBase#close

  13. def end(t: Buffer): Unit

    Same as io.vertx.scala.core.http.WebSocketBase#end but writes some data to the stream before ending.

    Same as io.vertx.scala.core.http.WebSocketBase#end but writes some data to the stream before ending.

    Definition Classes
    ServerWebSocketWebSocketBaseWriteStream
  14. def endHandler(endHandler: Handler[Unit]): ServerWebSocket

    Set an end handler.

    Set an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBaseReadStream
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def exceptionHandler(handler: Handler[Throwable]): ServerWebSocket

    Set an exception handler on the write stream.

    Set an exception handler on the write stream.

    handler

    the exception handler

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBaseWriteStreamReadStreamStreamBase
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def frameHandler(handler: Handler[WebSocketFrame]): ServerWebSocket

    Set a frame handler on the connection.

    Set a frame handler on the connection. This handler will be called when frames are read on the connection.

    handler

    the handler

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  21. def handler(handler: Handler[Buffer]): ServerWebSocket

    Set a data handler.

    Set a data handler. As data is read, the handler will be called with the data.

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBaseReadStream
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  23. def headers(): MultiMap

    returns

    the headers in the WebSocket handshake

  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def localAddress(): SocketAddress

    returns

    the local address for this socket

    Definition Classes
    ServerWebSocketWebSocketBase
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  29. def path(): String

    returns

    the WebSocket handshake path.

  30. def pause(): ServerWebSocket

    Pause the ReadSupport.

    Pause the ReadSupport. While it's paused, no data will be sent to the dataHandler

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBaseReadStream
  31. def query(): Option[String]

    returns

    the WebSocket handshake query string.

  32. def reject(): Unit

    Reject the WebSocket.

    Reject the WebSocket.

    Calling this method from the websocket handler when it is first passed to you gives you the opportunity to reject the websocket, which will cause the websocket handshake to fail by returning a 404 response code.

    You might use this method, if for example you only want to accept WebSockets with a particular path.

  33. def remoteAddress(): SocketAddress

    returns

    the remote address for this socket

    Definition Classes
    ServerWebSocketWebSocketBase
  34. def resume(): ServerWebSocket

    Resume reading.

    Resume reading. If the ReadSupport has been paused, reading will recommence on it.

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBaseReadStream
  35. def setWriteQueueMaxSize(maxSize: Int): ServerWebSocket

    Set the maximum size of the write queue to maxSize.

    Set the maximum size of the write queue to maxSize. You will still be able to write to the stream even if there is more than maxSize items in the write queue. This is used as an indicator by classes such as Pump to provide flow control.

    The value is defined by the implementation of the stream, e.g in bytes for a io.vertx.scala.core.net.NetSocket, the number of io.vertx.scala.core.eventbus.Message for a io.vertx.scala.core.eventbus.MessageProducer, etc...

    maxSize

    the max size of the write stream

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBaseWriteStream
  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def textHandlerID(): String

    When a Websocket is created it automatically registers an event handler with the eventbus, the ID of that handler is given by textHandlerID.

    When a Websocket is created it automatically registers an event handler with the eventbus, the ID of that handler is given by textHandlerID.

    Given this ID, a different event loop can send a text frame to that event handler using the event bus and that buffer will be received by this instance in its own event loop and written to the underlying connection. This allows you to write data to other WebSockets which are owned by different event loops.

    Definition Classes
    ServerWebSocketWebSocketBase
  38. def textMessageHandler(handler: Handler[String]): WebSocketBase

    Set a text message handler on the connection.

    Set a text message handler on the connection. This handler will be called similar to the , but the buffer will be converted to a String first

    handler

    the handler

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. def uri(): String
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def write(data: Buffer): ServerWebSocket

    Write some data to the stream.

    Write some data to the stream. The data is put on an internal write queue, and the write actually happens asynchronously. To avoid running out of memory by putting too much on the write queue, check the io.vertx.scala.core.streams.WriteStream#writeQueueFull method before writing. This is done automatically if using a io.vertx.scala.core.streams.Pump.

    data

    the data to write

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBaseWriteStream
  45. def writeBinaryMessage(data: Buffer): ServerWebSocket

    Writes a (potentially large) piece of binary data to the connection.

    Writes a (potentially large) piece of binary data to the connection. This data might be written as multiple frames if it exceeds the maximum WebSocket frame size.

    data

    the data to write

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase
  46. def writeFinalBinaryFrame(data: Buffer): ServerWebSocket

    Write a final WebSocket binary frame to the connection

    Write a final WebSocket binary frame to the connection

    data

    The data to write

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase
  47. def writeFinalTextFrame(text: String): ServerWebSocket

    Write a final WebSocket text frame to the connection

    Write a final WebSocket text frame to the connection

    text

    The text to write

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase
  48. def writeFrame(frame: WebSocketFrame): ServerWebSocket

    Write a WebSocket frame to the connection

    Write a WebSocket frame to the connection

    frame

    the frame to write

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase
  49. def writeQueueFull(): Boolean

    This will return true if there are more bytes in the write queue than the value set using io.vertx.scala.core.http.ServerWebSocket#setWriteQueueMaxSize

    This will return true if there are more bytes in the write queue than the value set using io.vertx.scala.core.http.ServerWebSocket#setWriteQueueMaxSize

    returns

    true if write queue is full

    Definition Classes
    ServerWebSocketWebSocketBaseWriteStream
  50. def writeTextMessage(text: String): WebSocketBase

    Writes a (potentially large) piece of text data to the connection.

    Writes a (potentially large) piece of text data to the connection. This data might be written as multiple frames if it exceeds the maximum WebSocket frame size.

    text

    the data to write

    returns

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

    Definition Classes
    ServerWebSocketWebSocketBase

Inherited from WebSocketBase

Inherited from WriteStream[Buffer]

Inherited from ReadStream[Buffer]

Inherited from StreamBase

Inherited from AnyRef

Inherited from Any

Ungrouped