Interface WebSocketBase
-
- All Superinterfaces:
ReadStream<Buffer>,StreamBase,WriteStream<Buffer>
- All Known Implementing Classes:
ServerWebSocket,WebSocket
public interface WebSocketBase extends ReadStream<Buffer>, WriteStream<Buffer>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description StringbinaryHandlerID()When aWebSocketis created, it may register an event handler with the event bus - the ID of that handler is given by this method.WebSocketBasebinaryMessageHandler(Handler<Buffer> handler)Set a binary message handler on the connection.io.reactivex.rxjava3.core.Completableclose()Same asclose()but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.Completableclose(short statusCode)Same asclose()but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.Completableclose(short statusCode, String reason)Same asclose()but with anhandlercalled when the operation completesWebSocketBasecloseHandler(Handler<Void> handler)Set a close handler.StringcloseReason()Returns the close reason message from the remote endpoint ornullwhen not yet received.ShortcloseStatusCode()Returns the close status code received from the remote endpoint ornullwhen not yet received.WebSocketBasedrainHandler(Handler<Void> handler)Set a drain handler on the stream.io.reactivex.rxjava3.core.Completableend()Callsclose()io.reactivex.rxjava3.core.Completableend(Buffer data)Same as but with anhandlercalled when the operation completesWebSocketBaseendHandler(Handler<Void> endHandler)Set an end handler.WebSocketBaseexceptionHandler(Handler<Throwable> handler)Set an exception handler on the read stream.WebSocketBasefetch(long amount)Fetch the specifiedamountof elements.WebSocketBaseframeHandler(Handler<WebSocketFrame> handler)Set a frame handler on the connection.WebSocketBasegetDelegate()WebSocketBasehandler(Handler<Buffer> handler)Set a data handler.MultiMapheaders()Returns the HTTP headers when the WebSocket is first obtained in the handler.booleanisClosed()booleanisSsl()SocketAddresslocalAddress()static WebSocketBasenewInstance(WebSocketBase arg)WebSocketBasepause()Pause theReadStream, it sets the buffer infetchmode and clears the actual demand.Pipe<Buffer>pipe()Pause this stream and return a to transfer the elements of this stream to a destination .io.reactivex.rxjava3.core.CompletablepipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.WebSocketBasepongHandler(Handler<Buffer> handler)Set a pong frame handler on the connection.SocketAddressremoteAddress()WebSocketBaseresume()Resume reading, and sets the buffer inflowingmode.io.reactivex.rxjava3.core.CompletablerxClose()Same asclose()but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxClose(short statusCode)Same asclose()but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxClose(short statusCode, String reason)Same asclose()but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxEnd()Callsclose()io.reactivex.rxjava3.core.CompletablerxEnd(Buffer data)Same as but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxPipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.io.reactivex.rxjava3.core.CompletablerxWrite(Buffer data)Same as but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxWriteBinaryMessage(Buffer data)Same aswriteBinaryMessage(io.vertx.rxjava3.core.buffer.Buffer)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxWriteFinalBinaryFrame(Buffer data)Same aswriteFinalBinaryFrame(io.vertx.rxjava3.core.buffer.Buffer)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxWriteFinalTextFrame(String text)Same aswriteFinalTextFrame(java.lang.String)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxWriteFrame(WebSocketFrame frame)Same aswriteFrame(io.vertx.rxjava3.core.http.WebSocketFrame)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablerxWritePing(Buffer data)Writes a ping frame to the connection.io.reactivex.rxjava3.core.CompletablerxWritePong(Buffer data)Writes a pong frame to the connection.io.reactivex.rxjava3.core.CompletablerxWriteTextMessage(String text)Same aswriteTextMessage(java.lang.String)but with anhandlercalled when the operation completesWebSocketBasesetWriteQueueMaxSize(int maxSize)Set the maximum size of the write queue tomaxSize.StringsubProtocol()Returns the WebSocket sub protocol selected by the WebSocket handshake.StringtextHandlerID()When aWebSocketis created, it may register an event handler with the eventbus, the ID of that handler is given bytextHandlerID.WebSocketBasetextMessageHandler(Handler<String> handler)Set a text message handler on the connection.io.reactivex.rxjava3.core.Completablewrite(Buffer data)Same as but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablewriteBinaryMessage(Buffer data)Same aswriteBinaryMessage(io.vertx.rxjava3.core.buffer.Buffer)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablewriteFinalBinaryFrame(Buffer data)Same aswriteFinalBinaryFrame(io.vertx.rxjava3.core.buffer.Buffer)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablewriteFinalTextFrame(String text)Same aswriteFinalTextFrame(java.lang.String)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablewriteFrame(WebSocketFrame frame)Same aswriteFrame(io.vertx.rxjava3.core.http.WebSocketFrame)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.CompletablewritePing(Buffer data)Writes a ping frame to the connection.io.reactivex.rxjava3.core.CompletablewritePong(Buffer data)Writes a pong frame to the connection.booleanwriteQueueFull()This will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)io.reactivex.rxjava3.core.CompletablewriteTextMessage(String text)Same aswriteTextMessage(java.lang.String)but with anhandlercalled when the operation completes-
Methods inherited from interface io.vertx.rxjava3.core.streams.ReadStream
toFlowable, toObservable
-
-
-
-
Method Detail
-
getDelegate
WebSocketBase getDelegate()
- Specified by:
getDelegatein interfaceReadStream<Buffer>- Specified by:
getDelegatein interfaceStreamBase- Specified by:
getDelegatein interfaceWriteStream<Buffer>
-
write
io.reactivex.rxjava3.core.Completable write(Buffer data)
Same as but with anhandlercalled when the operation completes- Specified by:
writein interfaceWriteStream<Buffer>- Parameters:
data-- Returns:
-
rxWrite
io.reactivex.rxjava3.core.Completable rxWrite(Buffer data)
Same as but with anhandlercalled when the operation completes- Specified by:
rxWritein interfaceWriteStream<Buffer>- Parameters:
data-- Returns:
-
end
io.reactivex.rxjava3.core.Completable end(Buffer data)
Same as but with anhandlercalled when the operation completes- Specified by:
endin interfaceWriteStream<Buffer>- Parameters:
data-- Returns:
-
rxEnd
io.reactivex.rxjava3.core.Completable rxEnd(Buffer data)
Same as but with anhandlercalled when the operation completes- Specified by:
rxEndin interfaceWriteStream<Buffer>- Parameters:
data-- Returns:
-
writeQueueFull
boolean writeQueueFull()
This will returntrueif there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)- Specified by:
writeQueueFullin interfaceWriteStream<Buffer>- Returns:
trueif write queue is full
-
pipe
Pipe<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>- Returns:
- a pipe
-
pipeTo
io.reactivex.rxjava3.core.Completable pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStreamto 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.- Specified by:
pipeToin interfaceReadStream<Buffer>- Parameters:
dst- the destination write stream- Returns:
-
rxPipeTo
io.reactivex.rxjava3.core.Completable rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStreamto 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.- Specified by:
rxPipeToin interfaceReadStream<Buffer>- Parameters:
dst- the destination write stream- Returns:
-
exceptionHandler
WebSocketBase exceptionHandler(Handler<Throwable> handler)
Description copied from interface:ReadStreamSet an exception handler on the read stream.- Specified by:
exceptionHandlerin interfaceReadStream<Buffer>- Specified by:
exceptionHandlerin interfaceStreamBase- Specified by:
exceptionHandlerin interfaceWriteStream<Buffer>- Parameters:
handler- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
handler
WebSocketBase handler(Handler<Buffer> 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>- Returns:
- a reference to this, so the API can be used fluently
-
pause
WebSocketBase 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>- Returns:
- a reference to this, so the API can be used fluently
-
resume
WebSocketBase 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>- Returns:
- a reference to this, so the API can be used fluently
-
fetch
WebSocketBase fetch(long amount)
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>- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
WebSocketBase endHandler(Handler<Void> 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>- Returns:
- a reference to this, so the API can be used fluently
-
setWriteQueueMaxSize
WebSocketBase setWriteQueueMaxSize(int maxSize)
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 interfaceWriteStream<Buffer>- Parameters:
maxSize- the max size of the write stream- Returns:
- a reference to this, so the API can be used fluently
-
drainHandler
WebSocketBase drainHandler(Handler<Void> handler)
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 interfaceWriteStream<Buffer>- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
binaryHandlerID
String 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.
- Returns:
- the binary handler id
-
textHandlerID
String 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.
- Returns:
- the text handler id
-
subProtocol
String 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.- Returns:
-
closeStatusCode
Short closeStatusCode()
Returns the close status code received from the remote endpoint ornullwhen not yet received.- Returns:
-
closeReason
String closeReason()
Returns the close reason message from the remote endpoint ornullwhen not yet received.- Returns:
-
headers
MultiMap headers()
Returns the HTTP headers when the WebSocket is first obtained in the handler. The headers will benullon subsequent interactions.- Returns:
- the headers
-
writeFrame
io.reactivex.rxjava3.core.Completable writeFrame(WebSocketFrame frame)
Same aswriteFrame(io.vertx.rxjava3.core.http.WebSocketFrame)but with anhandlercalled when the operation completes- Parameters:
frame-- Returns:
-
rxWriteFrame
io.reactivex.rxjava3.core.Completable rxWriteFrame(WebSocketFrame frame)
Same aswriteFrame(io.vertx.rxjava3.core.http.WebSocketFrame)but with anhandlercalled when the operation completes- Parameters:
frame-- Returns:
-
writeFinalTextFrame
io.reactivex.rxjava3.core.Completable writeFinalTextFrame(String text)
Same aswriteFinalTextFrame(java.lang.String)but with anhandlercalled when the operation completes- Parameters:
text-- Returns:
-
rxWriteFinalTextFrame
io.reactivex.rxjava3.core.Completable rxWriteFinalTextFrame(String text)
Same aswriteFinalTextFrame(java.lang.String)but with anhandlercalled when the operation completes- Parameters:
text-- Returns:
-
writeFinalBinaryFrame
io.reactivex.rxjava3.core.Completable writeFinalBinaryFrame(Buffer data)
Same aswriteFinalBinaryFrame(io.vertx.rxjava3.core.buffer.Buffer)but with anhandlercalled when the operation completes- Parameters:
data-- Returns:
-
rxWriteFinalBinaryFrame
io.reactivex.rxjava3.core.Completable rxWriteFinalBinaryFrame(Buffer data)
Same aswriteFinalBinaryFrame(io.vertx.rxjava3.core.buffer.Buffer)but with anhandlercalled when the operation completes- Parameters:
data-- Returns:
-
writeBinaryMessage
io.reactivex.rxjava3.core.Completable writeBinaryMessage(Buffer data)
Same aswriteBinaryMessage(io.vertx.rxjava3.core.buffer.Buffer)but with anhandlercalled when the operation completes- Parameters:
data-- Returns:
-
rxWriteBinaryMessage
io.reactivex.rxjava3.core.Completable rxWriteBinaryMessage(Buffer data)
Same aswriteBinaryMessage(io.vertx.rxjava3.core.buffer.Buffer)but with anhandlercalled when the operation completes- Parameters:
data-- Returns:
-
writeTextMessage
io.reactivex.rxjava3.core.Completable writeTextMessage(String text)
Same aswriteTextMessage(java.lang.String)but with anhandlercalled when the operation completes- Parameters:
text-- Returns:
-
rxWriteTextMessage
io.reactivex.rxjava3.core.Completable rxWriteTextMessage(String text)
Same aswriteTextMessage(java.lang.String)but with anhandlercalled when the operation completes- Parameters:
text-- Returns:
-
writePing
io.reactivex.rxjava3.core.Completable writePing(Buffer data)
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.
- Parameters:
data- the data to write, may be at most 125 bytes- Returns:
- a reference to this, so the API can be used fluently
-
rxWritePing
io.reactivex.rxjava3.core.Completable rxWritePing(Buffer data)
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.
- Parameters:
data- the data to write, may be at most 125 bytes- Returns:
- a reference to this, so the API can be used fluently
-
writePong
io.reactivex.rxjava3.core.Completable writePong(Buffer data)
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.
- Parameters:
data- the data to write, may be at most 125 bytes- Returns:
- a reference to this, so the API can be used fluently
-
rxWritePong
io.reactivex.rxjava3.core.Completable rxWritePong(Buffer data)
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.
- Parameters:
data- the data to write, may be at most 125 bytes- Returns:
- a reference to this, so the API can be used fluently
-
closeHandler
WebSocketBase closeHandler(Handler<Void> handler)
Set 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, thecloseStatusCode()will return the status code andcloseReason()will return the reason.- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
frameHandler
WebSocketBase frameHandler(Handler<WebSocketFrame> handler)
Set a frame handler on the connection. This handler will be called when frames are read on the connection.- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
textMessageHandler
WebSocketBase textMessageHandler(Handler<String> handler)
Set a text message handler on the connection. This handler will be called similar to thebinaryMessageHandler(io.vertx.core.Handler<io.vertx.rxjava3.core.buffer.Buffer>), but the buffer will be converted to a String first- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
binaryMessageHandler
WebSocketBase binaryMessageHandler(Handler<Buffer> handler)
Set a binary message handler on the connection. This handler serves a similar purpose tohandler(io.vertx.core.Handler<io.vertx.rxjava3.core.buffer.Buffer>)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 (usingWebSocketFrame.isFinal()to find the boundaries).- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
pongHandler
WebSocketBase pongHandler(Handler<Buffer> handler)
Set 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.
- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
end
io.reactivex.rxjava3.core.Completable end()
Callsclose()- Specified by:
endin interfaceWriteStream<Buffer>- Returns:
-
rxEnd
io.reactivex.rxjava3.core.Completable rxEnd()
Callsclose()- Specified by:
rxEndin interfaceWriteStream<Buffer>- Returns:
-
close
io.reactivex.rxjava3.core.Completable close()
Same asclose()but with anhandlercalled when the operation completes- Returns:
-
rxClose
io.reactivex.rxjava3.core.Completable rxClose()
Same asclose()but with anhandlercalled when the operation completes- Returns:
-
close
io.reactivex.rxjava3.core.Completable close(short statusCode)
Same asclose()but with anhandlercalled when the operation completes- Parameters:
statusCode-- Returns:
-
rxClose
io.reactivex.rxjava3.core.Completable rxClose(short statusCode)
Same asclose()but with anhandlercalled when the operation completes- Parameters:
statusCode-- Returns:
-
close
io.reactivex.rxjava3.core.Completable close(short statusCode, String reason)Same asclose()but with anhandlercalled when the operation completes- Parameters:
statusCode-reason-- Returns:
-
rxClose
io.reactivex.rxjava3.core.Completable rxClose(short statusCode, String reason)Same asclose()but with anhandlercalled when the operation completes- Parameters:
statusCode-reason-- Returns:
-
remoteAddress
SocketAddress remoteAddress()
- 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
SocketAddress localAddress()
- 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
boolean isSsl()
- Returns:
- true if this
HttpConnectionis encrypted via SSL/TLS.
-
isClosed
boolean isClosed()
- Returns:
trueif the WebSocket is closed
-
newInstance
static WebSocketBase newInstance(WebSocketBase arg)
-
-