Class WebSocket
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate, WebSocketBase, ReadStream<Buffer>, StreamBase, WriteStream<Buffer>
- Direct Known Subclasses:
ClientWebSocket, ServerWebSocket
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionWhen aWebSocketis created, it may register an event handler with the event bus - the ID of that handler is given by this method.binaryMessageHandler(Handler<Buffer> handler) Set a binary message handler on the connection.close()Close the WebSocket sending the default close frame.close(short statusCode) Close the WebSocket sending a close frame with specified status code.Close sending a close frame with specified status code and reason.closeHandler(Handler<Void> handler) Set a close handler.Returns the close reason message from the remote endpoint ornullwhen not yet received.Returns the close status code received from the remote endpoint ornullwhen not yet received.drainHandler(Handler<Void> handler) Set a drain handler on the stream.end()CallsWebSocketBase.close()Same asWebSocketBase.end(Buffer)but writes some data to the stream before ending.endHandler(Handler<Void> endHandler) Set an end handler.booleanexceptionHandler(Handler<Throwable> handler) Set an exception handler on the read stream.fetch(long amount) Fetch the specifiedamountof elements.frameHandler(Handler<WebSocketFrame> handler) Set a frame handler on the connection.Set a data handler.inthashCode()headers()Returns the HTTP headers.booleanisClosed()booleanisSsl()static WebSocketnewInstance(WebSocket arg) pause()Pause theReadStream, it sets the buffer infetchmode and clears the actual demand.pipe()Pause this stream and return a to transfer the elements of this stream to a destination .pipeTo(WriteStream<Buffer> dst) Pipe thisReadStreamto theWriteStream.pongHandler(Handler<Buffer> handler) Set a pong frame handler on the connection.resume()Resume reading, and sets the buffer inflowingmode.rxClose()Close the WebSocket sending the default close frame.rxClose(short statusCode) Close the WebSocket sending a close frame with specified status code.Close sending a close frame with specified status code and reason.rxEnd()CallsWebSocketBase.close()Same asWebSocketBase.end(Buffer)but writes some data to the stream before ending.rxPipeTo(WriteStream<Buffer> dst) Pipe thisReadStreamto theWriteStream.rxShutdown(long timeout, TimeUnit unit) rxShutdown(long timeout, TimeUnit unit, short statusCode) CallsWebSocketBase.shutdown()with anullreason.rxShutdown(long timeout, TimeUnit unit, short statusCode, String reason) CallsWebSocketBase.shutdown()rxShutdown(short statusCode) LikeWebSocketBase.shutdown()with a 30 seconds timeout and anullreason.rxShutdown(short statusCode, String reason) LikeWebSocketBase.shutdown()with a 30 seconds timeout.rxShutdown(Duration timeout) rxShutdown(Duration timeout, short statusCode) CallsWebSocketBase.shutdown()with anullreason.rxShutdown(Duration timeout, short statusCode, String reason) Initiate a graceful WebSocket shutdown, the shutdown handler is notified and shall close the WebSocket, otherwise after atimeoutthe WebSocket will be closed.Write some data to the stream.rxWriteBinaryMessage(Buffer data) Writes a (potentially large) piece of binary data to the connection.Write a final WebSocket binary frame to the connectionrxWriteFinalTextFrame(String text) Write a final WebSocket text frame to the connectionrxWriteFrame(WebSocketFrame frame) Write a WebSocket frame to the connectionrxWritePing(Buffer data) Writes a ping frame to the connection.rxWritePong(Buffer data) Writes a pong frame to the connection.rxWriteTextMessage(String text) Writes a (potentially large) piece of text data to the connection.setWriteQueueMaxSize(int maxSize) Set the maximum size of the write queue tomaxSize.shutdown()CallsWebSocketBase.shutdown()with anullreason.CallsWebSocketBase.shutdown()shutdown(short statusCode) LikeWebSocketBase.shutdown()with a 30 seconds timeout and anullreason.LikeWebSocketBase.shutdown()with a 30 seconds timeout.CallsWebSocketBase.shutdown()with anullreason.Initiate a graceful WebSocket shutdown, the shutdown handler is notified and shall close the WebSocket, otherwise after atimeoutthe WebSocket will be closed.shutdownHandler(Handler<Void> handler) Set ahandlernotified when the WebSocket is shutdown: the client or server will close the connection within a certain amount of time.Returns the WebSocket sub protocol selected by the WebSocket handshake.When aWebSocketis created, it may register an event handler with the eventbus, the ID of that handler is given bytextHandlerID.textMessageHandler(Handler<String> handler) Set a text message handler on the connection.toString()Write some data to the stream.writeBinaryMessage(Buffer data) Writes a (potentially large) piece of binary data to the connection.writeFinalBinaryFrame(Buffer data) Write a final WebSocket binary frame to the connectionwriteFinalTextFrame(String text) Write a final WebSocket text frame to the connectionwriteFrame(WebSocketFrame frame) Write a WebSocket frame to the connectionWrites a ping frame to the connection.Writes a pong frame to the connection.booleanThis will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)writeTextMessage(String text) Writes a (potentially large) piece of text data to the connection.
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
WebSocket
-
WebSocket
-
-
Method Details
-
toString
-
equals
-
hashCode
-
getDelegate
- Specified by:
getDelegatein interfaceReadStream<Buffer>- Specified by:
getDelegatein interfaceio.vertx.lang.rx.RxDelegate- Specified by:
getDelegatein interfaceStreamBase- Specified by:
getDelegatein interfaceWebSocketBase- Specified by:
getDelegatein interfaceWriteStream<Buffer>
-
toObservable
- Specified by:
toObservablein interfaceReadStream<Buffer>
-
toFlowable
- Specified by:
toFlowablein interfaceReadStream<Buffer>
-
toObserver
- Specified by:
toObserverin interfaceWriteStream<Buffer>
-
toSubscriber
- Specified by:
toSubscriberin interfaceWriteStream<Buffer>
-
pipe
Pause this stream and return a to transfer the elements of this stream to a destination . The stream will be resumed when the pipe will be wired to aWriteStream.- Specified by:
pipein interfaceReadStream<Buffer>- Specified by:
pipein interfaceWebSocketBase- Returns:
- a pipe
-
pipeTo
Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
- Specified by:
pipeToin interfaceReadStream<Buffer>- Specified by:
pipeToin interfaceWebSocketBase- Parameters:
dst- the destination write stream- Returns:
- a future notified when the write stream will be ended with the outcome
-
rxPipeTo
Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
- Specified by:
rxPipeToin interfaceReadStream<Buffer>- Specified by:
rxPipeToin interfaceWebSocketBase- Parameters:
dst- the destination write stream- Returns:
- a future notified when the write stream will be ended with the outcome
-
write
Write some data to the stream.The data is usually 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
WriteStream.writeQueueFull()method before writing. This is done automatically if using a .When the
datais moved from the queue to the actual medium, the returned will be completed with the write result, e.g the future is succeeded when a server HTTP response buffer is written to the socket and failed if the remote client has closed the socket while the data was still pending for write.- Specified by:
writein interfaceWebSocketBase- Specified by:
writein interfaceWriteStream<Buffer>- Parameters:
data- the data to write- Returns:
- a future completed with the write result
-
rxWrite
Write some data to the stream.The data is usually 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
WriteStream.writeQueueFull()method before writing. This is done automatically if using a .When the
datais moved from the queue to the actual medium, the returned will be completed with the write result, e.g the future is succeeded when a server HTTP response buffer is written to the socket and failed if the remote client has closed the socket while the data was still pending for write.- Specified by:
rxWritein interfaceWebSocketBase- Specified by:
rxWritein interfaceWriteStream<Buffer>- Parameters:
data- the data to write- Returns:
- a future completed with the write result
-
end
Same asWebSocketBase.end(Buffer)but writes some data to the stream before ending.- Specified by:
endin interfaceWebSocketBase- Specified by:
endin interfaceWriteStream<Buffer>- Parameters:
data- the data to write- Returns:
- a future completed with the result
-
rxEnd
Same asWebSocketBase.end(Buffer)but writes some data to the stream before ending.- Specified by:
rxEndin interfaceWebSocketBase- Specified by:
rxEndin interfaceWriteStream<Buffer>- Parameters:
data- the data to write- Returns:
- a future completed with the result
-
writeQueueFull
public boolean writeQueueFull()This will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)- Specified by:
writeQueueFullin interfaceWebSocketBase- Specified by:
writeQueueFullin interfaceWriteStream<Buffer>- Returns:
trueif write queue is full
-
binaryHandlerID
When aWebSocketis created, it may register an event handler with the event bus - the ID of that handler is given by this method.By default, no handler is registered, the feature must be enabled via
WebSocketConnectOptionsorHttpServerOptions.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.
- Specified by:
binaryHandlerIDin interfaceWebSocketBase- Returns:
- the binary handler id
-
textHandlerID
When aWebSocketis created, it may register an event handler with the eventbus, the ID of that handler is given bytextHandlerID.By default, no handler is registered, the feature must be enabled via
WebSocketConnectOptionsorHttpServerOptions.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.
- Specified by:
textHandlerIDin interfaceWebSocketBase- Returns:
- the text handler id
-
subProtocol
Returns the WebSocket sub protocol selected by the WebSocket handshake. On the server, the value will benullwhen the handler receives the WebSocket callback as the handshake will not be completed yet.- Specified by:
subProtocolin interfaceWebSocketBase- Returns:
-
closeStatusCode
Returns the close status code received from the remote endpoint ornullwhen not yet received.- Specified by:
closeStatusCodein interfaceWebSocketBase- Returns:
-
closeReason
Returns the close reason message from the remote endpoint ornullwhen not yet received.- Specified by:
closeReasonin interfaceWebSocketBase- Returns:
-
headers
Returns the HTTP headers.- Specified by:
headersin interfaceWebSocketBase- Returns:
- the headers
-
writeFrame
Write a WebSocket frame to the connection- Specified by:
writeFramein interfaceWebSocketBase- Parameters:
frame- the frame to write- Returns:
- a future completed with the result
-
rxWriteFrame
Write a WebSocket frame to the connection- Specified by:
rxWriteFramein interfaceWebSocketBase- Parameters:
frame- the frame to write- Returns:
- a future completed with the result
-
writeFinalTextFrame
Write a final WebSocket text frame to the connection- Specified by:
writeFinalTextFramein interfaceWebSocketBase- Parameters:
text- The text to write- Returns:
- a future completed with the result
-
rxWriteFinalTextFrame
Write a final WebSocket text frame to the connection- Specified by:
rxWriteFinalTextFramein interfaceWebSocketBase- Parameters:
text- The text to write- Returns:
- a future completed with the result
-
writeFinalBinaryFrame
Write a final WebSocket binary frame to the connection- Specified by:
writeFinalBinaryFramein interfaceWebSocketBase- Parameters:
data- The data to write- Returns:
- a future completed with the result
-
rxWriteFinalBinaryFrame
Write a final WebSocket binary frame to the connection- Specified by:
rxWriteFinalBinaryFramein interfaceWebSocketBase- Parameters:
data- The data to write- Returns:
- a future completed with the result
-
writeBinaryMessage
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.- Specified by:
writeBinaryMessagein interfaceWebSocketBase- Parameters:
data- the data to write- Returns:
- a future completed with the result
-
rxWriteBinaryMessage
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.- Specified by:
rxWriteBinaryMessagein interfaceWebSocketBase- Parameters:
data- the data to write- Returns:
- a future completed with the result
-
writeTextMessage
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.- Specified by:
writeTextMessagein interfaceWebSocketBase- Parameters:
text- the data to write- Returns:
- a future completed with the result
-
rxWriteTextMessage
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.- Specified by:
rxWriteTextMessagein interfaceWebSocketBase- Parameters:
text- the data to write- Returns:
- a future completed with the result
-
writePing
Writes a ping frame to the connection. This will be written in a single frame. Ping frames may be at most 125 bytes (octets).This method should not be used to write application data and should only be used for implementing a keep alive or to ensure the client is still responsive, see RFC 6455 Section section 5.5.2.
There is no handler for ping frames because RFC 6455 clearly states that the only response to a ping frame is a pong frame with identical contents.
- Specified by:
writePingin interfaceWebSocketBase- Parameters:
data- the data to write, may be at most 125 bytes- Returns:
- a future notified when the ping frame has been successfully written
-
rxWritePing
Writes a ping frame to the connection. This will be written in a single frame. Ping frames may be at most 125 bytes (octets).This method should not be used to write application data and should only be used for implementing a keep alive or to ensure the client is still responsive, see RFC 6455 Section section 5.5.2.
There is no handler for ping frames because RFC 6455 clearly states that the only response to a ping frame is a pong frame with identical contents.
- Specified by:
rxWritePingin interfaceWebSocketBase- Parameters:
data- the data to write, may be at most 125 bytes- Returns:
- a future notified when the ping frame has been successfully written
-
writePong
Writes a pong frame to the connection. This will be written in a single frame. Pong frames may be at most 125 bytes (octets).This method should not be used to write application data and should only be used for implementing a keep alive or to ensure the client is still responsive, see RFC 6455 section 5.5.2.
There is no need to manually write a pong frame, as the server and client both handle responding to a ping from with a pong from automatically and this is exposed to users. RFC 6455 section 5.5.3 states that pongs may be sent unsolicited in order to implement a one way heartbeat.
- Specified by:
writePongin interfaceWebSocketBase- Parameters:
data- the data to write, may be at most 125 bytes- Returns:
- a future notified when the pong frame has been successfully written
-
rxWritePong
Writes a pong frame to the connection. This will be written in a single frame. Pong frames may be at most 125 bytes (octets).This method should not be used to write application data and should only be used for implementing a keep alive or to ensure the client is still responsive, see RFC 6455 section 5.5.2.
There is no need to manually write a pong frame, as the server and client both handle responding to a ping from with a pong from automatically and this is exposed to users. RFC 6455 section 5.5.3 states that pongs may be sent unsolicited in order to implement a one way heartbeat.
- Specified by:
rxWritePongin interfaceWebSocketBase- Parameters:
data- the data to write, may be at most 125 bytes- Returns:
- a future notified when the pong frame has been successfully written
-
end
CallsWebSocketBase.close()- Specified by:
endin interfaceWebSocketBase- Specified by:
endin interfaceWriteStream<Buffer>- Returns:
-
rxEnd
CallsWebSocketBase.close()- Specified by:
rxEndin interfaceWebSocketBase- Specified by:
rxEndin interfaceWriteStream<Buffer>- Returns:
-
close
Close the WebSocket sending the default close frame. No more messages can be sent.- Specified by:
closein interfaceWebSocketBase- Returns:
- a future completed with the result
-
rxClose
Close the WebSocket sending the default close frame. No more messages can be sent.- Specified by:
rxClosein interfaceWebSocketBase- Returns:
- a future completed with the result
-
close
Close the WebSocket sending a close frame with specified status code. You can give a look at various close payloads here: RFC6455 section 7.4.1 No more messages can be sent.- Specified by:
closein interfaceWebSocketBase- Parameters:
statusCode- the status code- Returns:
- a future completed with the result
-
rxClose
Close the WebSocket sending a close frame with specified status code. You can give a look at various close payloads here: RFC6455 section 7.4.1 No more messages can be sent.- Specified by:
rxClosein interfaceWebSocketBase- Parameters:
statusCode- the status code- Returns:
- a future completed with the result
-
close
Close sending a close frame with specified status code and reason. You can give a look at various close payloads here: RFC6455 section 7.4.1 No more messages can be sent.- Specified by:
closein interfaceWebSocketBase- Parameters:
statusCode- the status codereason- reason of closure- Returns:
- a future completed with the result
-
rxClose
Close sending a close frame with specified status code and reason. You can give a look at various close payloads here: RFC6455 section 7.4.1 No more messages can be sent.- Specified by:
rxClosein interfaceWebSocketBase- Parameters:
statusCode- the status codereason- reason of closure- Returns:
- a future completed with the result
-
shutdown
- Specified by:
shutdownin interfaceWebSocketBase- Returns:
-
rxShutdown
- Specified by:
rxShutdownin interfaceWebSocketBase- Returns:
-
shutdown
LikeWebSocketBase.shutdown()with a 30 seconds timeout and anullreason.- Specified by:
shutdownin interfaceWebSocketBase- Parameters:
statusCode-- Returns:
-
rxShutdown
LikeWebSocketBase.shutdown()with a 30 seconds timeout and anullreason.- Specified by:
rxShutdownin interfaceWebSocketBase- Parameters:
statusCode-- Returns:
-
shutdown
LikeWebSocketBase.shutdown()with a 30 seconds timeout.- Specified by:
shutdownin interfaceWebSocketBase- Parameters:
statusCode-reason-- Returns:
-
rxShutdown
LikeWebSocketBase.shutdown()with a 30 seconds timeout.- Specified by:
rxShutdownin interfaceWebSocketBase- Parameters:
statusCode-reason-- Returns:
-
shutdown
- Specified by:
shutdownin interfaceWebSocketBase- Parameters:
timeout-unit-- Returns:
-
rxShutdown
- Specified by:
rxShutdownin interfaceWebSocketBase- Parameters:
timeout-unit-- Returns:
-
shutdown
CallsWebSocketBase.shutdown()with anullreason.- Specified by:
shutdownin interfaceWebSocketBase- Parameters:
timeout-unit-statusCode-- Returns:
-
rxShutdown
CallsWebSocketBase.shutdown()with anullreason.- Specified by:
rxShutdownin interfaceWebSocketBase- Parameters:
timeout-unit-statusCode-- Returns:
-
shutdown
CallsWebSocketBase.shutdown()- Specified by:
shutdownin interfaceWebSocketBase- Parameters:
timeout-unit-statusCode-reason-- Returns:
-
rxShutdown
CallsWebSocketBase.shutdown()- Specified by:
rxShutdownin interfaceWebSocketBase- Parameters:
timeout-unit-statusCode-reason-- Returns:
-
remoteAddress
- Specified by:
remoteAddressin interfaceWebSocketBase- Returns:
- the remote address for this connection, possibly
null(e.g a server bound on a domain socket). IfuseProxyProtocolis set totrue, the address returned will be of the actual connecting client.
-
localAddress
- Specified by:
localAddressin interfaceWebSocketBase- Returns:
- the local address for this connection, possibly
null(e.g a server bound on a domain socket) IfuseProxyProtocolis set totrue, the address returned will be of the proxy.
-
isSsl
public boolean isSsl()- Specified by:
isSslin interfaceWebSocketBase- Returns:
- true if this
HttpConnectionis encrypted via SSL/TLS.
-
isClosed
public boolean isClosed()- Specified by:
isClosedin interfaceWebSocketBase- Returns:
trueif the WebSocket cannot be used to send message anymore
-
exceptionHandler
Description copied from interface:ReadStreamSet an exception handler on the read stream.- Specified by:
exceptionHandlerin interfaceReadStream<Buffer>- Specified by:
exceptionHandlerin interfaceStreamBase- Specified by:
exceptionHandlerin interfaceWebSocketBase- Specified by:
exceptionHandlerin interfaceWriteStream<Buffer>- Parameters:
handler- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
handler
Description copied from interface:ReadStreamSet a data handler. As data is read, the handler will be called with the data.- Specified by:
handlerin interfaceReadStream<Buffer>- Specified by:
handlerin interfaceWebSocketBase- Parameters:
handler-- Returns:
- a reference to this, so the API can be used fluently
-
pause
Description copied from interface:ReadStreamPause theReadStream, it sets the buffer infetchmode and clears the actual demand.While it's paused, no data will be sent to the data
handler.- Specified by:
pausein interfaceReadStream<Buffer>- Specified by:
pausein interfaceWebSocketBase- Returns:
- a reference to this, so the API can be used fluently
-
resume
Description copied from interface:ReadStreamResume reading, and sets the buffer inflowingmode. If theReadStreamhas been paused, reading will recommence on it.- Specified by:
resumein interfaceReadStream<Buffer>- Specified by:
resumein interfaceWebSocketBase- Returns:
- a reference to this, so the API can be used fluently
-
fetch
Description copied from interface:ReadStreamFetch the specifiedamountof elements. If theReadStreamhas been paused, reading will recommence with the specifiedamountof items, otherwise the specifiedamountwill be added to the current stream demand.- Specified by:
fetchin interfaceReadStream<Buffer>- Specified by:
fetchin interfaceWebSocketBase- Parameters:
amount-- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
Description copied from interface:ReadStreamSet an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.- Specified by:
endHandlerin interfaceReadStream<Buffer>- Specified by:
endHandlerin interfaceWebSocketBase- Parameters:
endHandler-- Returns:
- a reference to this, so the API can be used fluently
-
setWriteQueueMaxSize
Description copied from interface:WriteStreamSet the maximum size of the write queue tomaxSize. You will still be able to write to the stream even if there is more thanmaxSizeitems in the write queue. This is used as an indicator by classes such asPipeto provide flow control. The value is defined by the implementation of the stream, e.g in bytes for aNetSocket, etc...- Specified by:
setWriteQueueMaxSizein interfaceWebSocketBase- Specified by:
setWriteQueueMaxSizein interfaceWriteStream<Buffer>- Parameters:
maxSize- the max size of the write stream- Returns:
- a reference to this, so the API can be used fluently
-
drainHandler
Description copied from interface:WriteStreamSet 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. SeePipefor 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.- Specified by:
drainHandlerin interfaceWebSocketBase- Specified by:
drainHandlerin interfaceWriteStream<Buffer>- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
closeHandler
Description copied from interface:WebSocketBaseSet a close handler. This will be called when the WebSocket is closed. After this callback, no more messages are expected. When the WebSocket received a close frame, theWebSocketBase.closeStatusCode()will return the status code andWebSocketBase.closeReason()will return the reason.- Specified by:
closeHandlerin interfaceWebSocketBase- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
shutdownHandler
Description copied from interface:WebSocketBaseSet ahandlernotified when the WebSocket is shutdown: the client or server will close the connection within a certain amount of time. This gives the opportunity to thehandlerto close the WebSocket gracefully before the WebSocket is forcefully closed.- Specified by:
shutdownHandlerin interfaceWebSocketBase- Parameters:
handler- the handler notified with the remaining shutdown- Returns:
- a reference to this, so the API can be used fluently
-
frameHandler
Description copied from interface:WebSocketBaseSet a frame handler on the connection. This handler will be called when frames are read on the connection.- Specified by:
frameHandlerin interfaceWebSocketBase- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
textMessageHandler
Description copied from interface:WebSocketBaseSet a text message handler on the connection. This handler will be called similar to theWebSocketBase.binaryMessageHandler(Handler), but the buffer will be converted to a String first- Specified by:
textMessageHandlerin interfaceWebSocketBase- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
binaryMessageHandler
Description copied from interface:WebSocketBaseSet a binary message handler on the connection. This handler serves a similar purpose toWebSocketBase.handler(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 (usingWebSocketFrameto find the boundaries).- Specified by:
binaryMessageHandlerin interfaceWebSocketBase- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
pongHandler
Description copied from interface:WebSocketBaseSet a pong frame handler on the connection. This handler will be invoked every time a pong frame is received on the server, and can be used by both clients and servers since the RFC 6455 section 5.5.2 and section 5.5.3 do not specify whether the client or server sends a ping.Pong frames may be at most 125 bytes (octets).
There is no ping handler since ping frames should immediately be responded to with a pong frame with identical content
Pong frames may be received unsolicited.
- Specified by:
pongHandlerin interfaceWebSocketBase- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
shutdown
- Parameters:
timeout-- Returns:
-
rxShutdown
- Parameters:
timeout-- Returns:
-
shutdown
CallsWebSocketBase.shutdown()with anullreason.- Parameters:
timeout-statusCode-- Returns:
-
rxShutdown
CallsWebSocketBase.shutdown()with anullreason.- Parameters:
timeout-statusCode-- Returns:
-
shutdown
Initiate a graceful WebSocket shutdown, the shutdown handler is notified and shall close the WebSocket, otherwise after atimeoutthe WebSocket will be closed. The WebSocket is closed with specified status code and reason. You can give a look at various close payloads here: RFC6455 section 7.4.1- Parameters:
timeout- the amount of time after which all resources are forcibly closedstatusCode- the status codereason- reason of closure- Returns:
- a future completed when shutdown has completed
-
rxShutdown
Initiate a graceful WebSocket shutdown, the shutdown handler is notified and shall close the WebSocket, otherwise after atimeoutthe WebSocket will be closed. The WebSocket is closed with specified status code and reason. You can give a look at various close payloads here: RFC6455 section 7.4.1- Parameters:
timeout- the amount of time after which all resources are forcibly closedstatusCode- the status codereason- reason of closure- Returns:
- a future completed when shutdown has completed
-
sslSession
- Returns:
- SSLSession associated with the underlying socket. Returns null if connection is not SSL.
-
newInstance
-