Class ServerWebSocket
- java.lang.Object
-
- io.vertx.reactivex.core.http.WebSocket
-
- io.vertx.reactivex.core.http.ServerWebSocket
-
- All Implemented Interfaces:
WebSocketBase
,ReadStream<Buffer>
,StreamBase
,WriteStream<Buffer>
public class ServerWebSocket extends WebSocket
Represents a server side WebSocket.Instances of this class are passed into a
HttpServer.webSocketHandler(io.vertx.core.Handler<io.vertx.reactivex.core.http.ServerWebSocket>)
or provided when a WebSocket handshake is manuallyHttpServerRequest.toWebSocket()
ed.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<ServerWebSocket>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ServerWebSocket(ServerWebSocket delegate)
ServerWebSocket(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description HostAndPort
authority()
String
binaryHandlerID()
When aWebSocket
is created, it may register an event handler with the event bus - the ID of that handler is given by this method.Future<Void>
close()
The WebSocket handshake will be accepted when it hasn't yet been settled or when an asynchronous handshake is in progress.Future<Void>
close(short statusCode)
Close the WebSocket sending a close frame with specified status code.Future<Void>
close(short statusCode, String reason)
Close sending a close frame with specified status code and reason.ServerWebSocket
closeHandler(Handler<Void> handler)
Set a close handler.String
closeReason()
Returns the close reason message from the remote endpoint ornull
when not yet received.Short
closeStatusCode()
Returns the close status code received from the remote endpoint ornull
when not yet received.ServerWebSocket
drainHandler(Handler<Void> handler)
Set a drain handler on the stream.Future<Void>
end()
Callsclose(short)
Future<Void>
end(Buffer data)
Same asWebSocketBase.end(io.vertx.core.buffer.Buffer)
but writes some data to the stream before ending.ServerWebSocket
endHandler(Handler<Void> endHandler)
Set an end handler.boolean
equals(Object o)
ServerWebSocket
exceptionHandler(Handler<Throwable> handler)
Set an exception handler on the read stream.ServerWebSocket
fetch(long amount)
Fetch the specifiedamount
of elements.ServerWebSocket
frameHandler(Handler<WebSocketFrame> handler)
Set a frame handler on the connection.ServerWebSocket
getDelegate()
ServerWebSocket
handler(Handler<Buffer> handler)
Set a data handler.int
hashCode()
MultiMap
headers()
Returns the HTTP headers.boolean
isClosed()
boolean
isSsl()
SocketAddress
localAddress()
static ServerWebSocket
newInstance(ServerWebSocket arg)
String
path()
ServerWebSocket
pause()
Pause theReadStream
, it sets the buffer infetch
mode and clears the actual demand.Pipe<Buffer>
pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .Future<Void>
pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.String
query()
SocketAddress
remoteAddress()
ServerWebSocket
resume()
Resume reading, and sets the buffer inflowing
mode.Completable
rxClose()
The WebSocket handshake will be accepted when it hasn't yet been settled or when an asynchronous handshake is in progress.Completable
rxClose(short statusCode)
Close the WebSocket sending a close frame with specified status code.Completable
rxClose(short statusCode, String reason)
Close sending a close frame with specified status code and reason.Completable
rxEnd()
Callsclose(short)
Completable
rxEnd(Buffer data)
Same asWebSocketBase.end(io.vertx.core.buffer.Buffer)
but writes some data to the stream before ending.Completable
rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.Completable
rxShutdown()
Completable
rxShutdown(long timeout, TimeUnit unit)
Completable
rxShutdown(long timeout, TimeUnit unit, short statusCode)
CallsWebSocketBase.shutdown()
with anull
reason.Completable
rxShutdown(long timeout, TimeUnit unit, short statusCode, String reason)
Initiate a graceful WebSocket shutdown, the shutdown handler is notified and shall close the WebSocket, otherwise after atimeout
the WebSocket will be closed.Completable
rxShutdown(short statusCode)
LikeWebSocketBase.shutdown()
with a 30 seconds timeout and anull
reason.Completable
rxShutdown(short statusCode, String reason)
LikeWebSocketBase.shutdown()
with a 30 seconds timeout.Completable
rxWrite(Buffer data)
Write some data to the stream.Completable
rxWriteBinaryMessage(Buffer data)
Writes a (potentially large) piece of binary data to the connection.Completable
rxWriteFinalBinaryFrame(Buffer data)
Write a final WebSocket binary frame to the connectionCompletable
rxWriteFinalTextFrame(String text)
Write a final WebSocket text frame to the connectionCompletable
rxWriteFrame(WebSocketFrame frame)
Write a WebSocket frame to the connectionCompletable
rxWritePing(Buffer data)
Writes a ping frame to the connection.Completable
rxWritePong(Buffer data)
Writes a pong frame to the connection.Completable
rxWriteTextMessage(String text)
Writes a (potentially large) piece of text data to the connection.String
scheme()
ServerWebSocket
setWriteQueueMaxSize(int maxSize)
Set the maximum size of the write queue tomaxSize
.Future<Void>
shutdown()
Future<Void>
shutdown(long timeout, TimeUnit unit)
Future<Void>
shutdown(long timeout, TimeUnit unit, short statusCode)
CallsWebSocketBase.shutdown()
with anull
reason.Future<Void>
shutdown(long timeout, TimeUnit unit, short statusCode, String reason)
Initiate a graceful WebSocket shutdown, the shutdown handler is notified and shall close the WebSocket, otherwise after atimeout
the WebSocket will be closed.Future<Void>
shutdown(short statusCode)
LikeWebSocketBase.shutdown()
with a 30 seconds timeout and anull
reason.Future<Void>
shutdown(short statusCode, String reason)
LikeWebSocketBase.shutdown()
with a 30 seconds timeout.SSLSession
sslSession()
String
subProtocol()
Returns the WebSocket sub protocol selected by the WebSocket handshake.String
textHandlerID()
When aWebSocket
is created, it may register an event handler with the eventbus, the ID of that handler is given bytextHandlerID
.Flowable<Buffer>
toFlowable()
Observable<Buffer>
toObservable()
WriteStreamObserver<Buffer>
toObserver()
String
toString()
WriteStreamSubscriber<Buffer>
toSubscriber()
String
uri()
Future<Void>
write(Buffer data)
Write some data to the stream.Future<Void>
writeBinaryMessage(Buffer data)
Writes a (potentially large) piece of binary data to the connection.Future<Void>
writeFinalBinaryFrame(Buffer data)
Write a final WebSocket binary frame to the connectionFuture<Void>
writeFinalTextFrame(String text)
Write a final WebSocket text frame to the connectionFuture<Void>
writeFrame(WebSocketFrame frame)
Write a WebSocket frame to the connectionFuture<Void>
writePing(Buffer data)
Writes a ping frame to the connection.Future<Void>
writePong(Buffer data)
Writes a pong frame to the connection.boolean
writeQueueFull()
This will returntrue
if there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)
Future<Void>
writeTextMessage(String text)
Writes a (potentially large) piece of text data to the connection.-
Methods inherited from class io.vertx.reactivex.core.http.WebSocket
binaryMessageHandler, newInstance, pongHandler, shutdownHandler, textMessageHandler
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<ServerWebSocket> __TYPE_ARG
-
-
Constructor Detail
-
ServerWebSocket
public ServerWebSocket(ServerWebSocket delegate)
-
ServerWebSocket
public ServerWebSocket(Object delegate)
-
-
Method Detail
-
getDelegate
public ServerWebSocket getDelegate()
- Specified by:
getDelegate
in interfaceReadStream<Buffer>
- Specified by:
getDelegate
in interfaceStreamBase
- Specified by:
getDelegate
in interfaceWebSocketBase
- Specified by:
getDelegate
in interfaceWriteStream<Buffer>
- Overrides:
getDelegate
in classWebSocket
-
toObservable
public Observable<Buffer> toObservable()
- Specified by:
toObservable
in interfaceReadStream<Buffer>
- Overrides:
toObservable
in classWebSocket
-
toFlowable
public Flowable<Buffer> toFlowable()
- Specified by:
toFlowable
in interfaceReadStream<Buffer>
- Overrides:
toFlowable
in classWebSocket
-
toObserver
public WriteStreamObserver<Buffer> toObserver()
- Specified by:
toObserver
in interfaceWriteStream<Buffer>
- Overrides:
toObserver
in classWebSocket
-
toSubscriber
public WriteStreamSubscriber<Buffer> toSubscriber()
- Specified by:
toSubscriber
in interfaceWriteStream<Buffer>
- Overrides:
toSubscriber
in classWebSocket
-
pipe
public 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:
pipe
in interfaceReadStream<Buffer>
- Specified by:
pipe
in interfaceWebSocketBase
- Overrides:
pipe
in classWebSocket
- Returns:
- a pipe
-
pipeTo
public Future<Void> pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
- Specified by:
pipeTo
in interfaceReadStream<Buffer>
- Specified by:
pipeTo
in interfaceWebSocketBase
- Overrides:
pipeTo
in classWebSocket
- Parameters:
dst
- the destination write stream- Returns:
- a future notified when the write stream will be ended with the outcome
-
rxPipeTo
public Completable rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
- Specified by:
rxPipeTo
in interfaceReadStream<Buffer>
- Specified by:
rxPipeTo
in interfaceWebSocketBase
- Overrides:
rxPipeTo
in classWebSocket
- Parameters:
dst
- the destination write stream- Returns:
- a future notified when the write stream will be ended with the outcome
-
write
public Future<Void> write(Buffer data)
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
data
is 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:
write
in interfaceWebSocketBase
- Specified by:
write
in interfaceWriteStream<Buffer>
- Overrides:
write
in classWebSocket
- Parameters:
data
- the data to write- Returns:
- a future completed with the write result
-
rxWrite
public Completable rxWrite(Buffer data)
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
data
is 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:
rxWrite
in interfaceWebSocketBase
- Specified by:
rxWrite
in interfaceWriteStream<Buffer>
- Overrides:
rxWrite
in classWebSocket
- Parameters:
data
- the data to write- Returns:
- a future completed with the write result
-
end
public Future<Void> end(Buffer data)
Same asWebSocketBase.end(io.vertx.core.buffer.Buffer)
but writes some data to the stream before ending.- Specified by:
end
in interfaceWebSocketBase
- Specified by:
end
in interfaceWriteStream<Buffer>
- Overrides:
end
in classWebSocket
- Parameters:
data
- the data to write- Returns:
- a future completed with the result
-
rxEnd
public Completable rxEnd(Buffer data)
Same asWebSocketBase.end(io.vertx.core.buffer.Buffer)
but writes some data to the stream before ending.- Specified by:
rxEnd
in interfaceWebSocketBase
- Specified by:
rxEnd
in interfaceWriteStream<Buffer>
- Overrides:
rxEnd
in classWebSocket
- Parameters:
data
- the data to write- Returns:
- a future completed with the result
-
writeQueueFull
public boolean writeQueueFull()
This will returntrue
if there are more bytes in the write queue than the value set usingsetWriteQueueMaxSize(int)
- Specified by:
writeQueueFull
in interfaceWebSocketBase
- Specified by:
writeQueueFull
in interfaceWriteStream<Buffer>
- Overrides:
writeQueueFull
in classWebSocket
- Returns:
true
if write queue is full
-
binaryHandlerID
public String binaryHandlerID()
When aWebSocket
is 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
WebSocketConnectOptions
orHttpServerOptions
.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:
binaryHandlerID
in interfaceWebSocketBase
- Overrides:
binaryHandlerID
in classWebSocket
- Returns:
- the binary handler id
-
textHandlerID
public String textHandlerID()
When aWebSocket
is 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
WebSocketConnectOptions
orHttpServerOptions
.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:
textHandlerID
in interfaceWebSocketBase
- Overrides:
textHandlerID
in classWebSocket
- Returns:
- the text handler id
-
subProtocol
public String subProtocol()
Returns the WebSocket sub protocol selected by the WebSocket handshake. On the server, the value will benull
when the handler receives the WebSocket callback as the handshake will not be completed yet.- Specified by:
subProtocol
in interfaceWebSocketBase
- Overrides:
subProtocol
in classWebSocket
- Returns:
-
closeStatusCode
public Short closeStatusCode()
Returns the close status code received from the remote endpoint ornull
when not yet received.- Specified by:
closeStatusCode
in interfaceWebSocketBase
- Overrides:
closeStatusCode
in classWebSocket
- Returns:
-
closeReason
public String closeReason()
Returns the close reason message from the remote endpoint ornull
when not yet received.- Specified by:
closeReason
in interfaceWebSocketBase
- Overrides:
closeReason
in classWebSocket
- Returns:
-
headers
public MultiMap headers()
Returns the HTTP headers.- Specified by:
headers
in interfaceWebSocketBase
- Overrides:
headers
in classWebSocket
- Returns:
- the headers
-
writeFrame
public Future<Void> writeFrame(WebSocketFrame frame)
Write a WebSocket frame to the connection- Specified by:
writeFrame
in interfaceWebSocketBase
- Overrides:
writeFrame
in classWebSocket
- Parameters:
frame
- the frame to write- Returns:
- a future completed with the result
-
rxWriteFrame
public Completable rxWriteFrame(WebSocketFrame frame)
Write a WebSocket frame to the connection- Specified by:
rxWriteFrame
in interfaceWebSocketBase
- Overrides:
rxWriteFrame
in classWebSocket
- Parameters:
frame
- the frame to write- Returns:
- a future completed with the result
-
writeFinalTextFrame
public Future<Void> writeFinalTextFrame(String text)
Write a final WebSocket text frame to the connection- Specified by:
writeFinalTextFrame
in interfaceWebSocketBase
- Overrides:
writeFinalTextFrame
in classWebSocket
- Parameters:
text
- The text to write- Returns:
- a future completed with the result
-
rxWriteFinalTextFrame
public Completable rxWriteFinalTextFrame(String text)
Write a final WebSocket text frame to the connection- Specified by:
rxWriteFinalTextFrame
in interfaceWebSocketBase
- Overrides:
rxWriteFinalTextFrame
in classWebSocket
- Parameters:
text
- The text to write- Returns:
- a future completed with the result
-
writeFinalBinaryFrame
public Future<Void> writeFinalBinaryFrame(Buffer data)
Write a final WebSocket binary frame to the connection- Specified by:
writeFinalBinaryFrame
in interfaceWebSocketBase
- Overrides:
writeFinalBinaryFrame
in classWebSocket
- Parameters:
data
- The data to write- Returns:
- a future completed with the result
-
rxWriteFinalBinaryFrame
public Completable rxWriteFinalBinaryFrame(Buffer data)
Write a final WebSocket binary frame to the connection- Specified by:
rxWriteFinalBinaryFrame
in interfaceWebSocketBase
- Overrides:
rxWriteFinalBinaryFrame
in classWebSocket
- Parameters:
data
- The data to write- Returns:
- a future completed with the result
-
writeBinaryMessage
public Future<Void> writeBinaryMessage(Buffer data)
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:
writeBinaryMessage
in interfaceWebSocketBase
- Overrides:
writeBinaryMessage
in classWebSocket
- Parameters:
data
- the data to write- Returns:
- a future completed with the result
-
rxWriteBinaryMessage
public Completable rxWriteBinaryMessage(Buffer data)
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:
rxWriteBinaryMessage
in interfaceWebSocketBase
- Overrides:
rxWriteBinaryMessage
in classWebSocket
- Parameters:
data
- the data to write- Returns:
- a future completed with the result
-
writeTextMessage
public Future<Void> writeTextMessage(String text)
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:
writeTextMessage
in interfaceWebSocketBase
- Overrides:
writeTextMessage
in classWebSocket
- Parameters:
text
- the data to write- Returns:
- a future completed with the result
-
rxWriteTextMessage
public Completable rxWriteTextMessage(String text)
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:
rxWriteTextMessage
in interfaceWebSocketBase
- Overrides:
rxWriteTextMessage
in classWebSocket
- Parameters:
text
- the data to write- Returns:
- a future completed with the result
-
writePing
public Future<Void> 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.
- Specified by:
writePing
in interfaceWebSocketBase
- Overrides:
writePing
in classWebSocket
- 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
public 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.
- Specified by:
rxWritePing
in interfaceWebSocketBase
- Overrides:
rxWritePing
in classWebSocket
- 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
public Future<Void> 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.
- Specified by:
writePong
in interfaceWebSocketBase
- Overrides:
writePong
in classWebSocket
- 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
public 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.
- Specified by:
rxWritePong
in interfaceWebSocketBase
- Overrides:
rxWritePong
in classWebSocket
- 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
public Future<Void> end()
Callsclose(short)
- Specified by:
end
in interfaceWebSocketBase
- Specified by:
end
in interfaceWriteStream<Buffer>
- Overrides:
end
in classWebSocket
- Returns:
-
rxEnd
public Completable rxEnd()
Callsclose(short)
- Specified by:
rxEnd
in interfaceWebSocketBase
- Specified by:
rxEnd
in interfaceWriteStream<Buffer>
- Overrides:
rxEnd
in classWebSocket
- Returns:
-
close
public Future<Void> close(short statusCode)
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:
close
in interfaceWebSocketBase
- Overrides:
close
in classWebSocket
- Parameters:
statusCode
- the status code- Returns:
- a future completed with the result
-
rxClose
public Completable rxClose(short statusCode)
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:
rxClose
in interfaceWebSocketBase
- Overrides:
rxClose
in classWebSocket
- Parameters:
statusCode
- the status code- Returns:
- a future completed with the result
-
close
public Future<Void> close(short statusCode, String reason)
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:
close
in interfaceWebSocketBase
- Overrides:
close
in classWebSocket
- Parameters:
statusCode
- the status codereason
- reason of closure- Returns:
- a future completed with the result
-
rxClose
public Completable rxClose(short statusCode, String reason)
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:
rxClose
in interfaceWebSocketBase
- Overrides:
rxClose
in classWebSocket
- Parameters:
statusCode
- the status codereason
- reason of closure- Returns:
- a future completed with the result
-
shutdown
public Future<Void> shutdown()
- Specified by:
shutdown
in interfaceWebSocketBase
- Overrides:
shutdown
in classWebSocket
- Returns:
-
rxShutdown
public Completable rxShutdown()
- Specified by:
rxShutdown
in interfaceWebSocketBase
- Overrides:
rxShutdown
in classWebSocket
- Returns:
-
shutdown
public Future<Void> shutdown(short statusCode)
LikeWebSocketBase.shutdown()
with a 30 seconds timeout and anull
reason.- Specified by:
shutdown
in interfaceWebSocketBase
- Overrides:
shutdown
in classWebSocket
- Parameters:
statusCode
-- Returns:
-
rxShutdown
public Completable rxShutdown(short statusCode)
LikeWebSocketBase.shutdown()
with a 30 seconds timeout and anull
reason.- Specified by:
rxShutdown
in interfaceWebSocketBase
- Overrides:
rxShutdown
in classWebSocket
- Parameters:
statusCode
-- Returns:
-
shutdown
public Future<Void> shutdown(short statusCode, String reason)
LikeWebSocketBase.shutdown()
with a 30 seconds timeout.- Specified by:
shutdown
in interfaceWebSocketBase
- Overrides:
shutdown
in classWebSocket
- Parameters:
statusCode
-reason
-- Returns:
-
rxShutdown
public Completable rxShutdown(short statusCode, String reason)
LikeWebSocketBase.shutdown()
with a 30 seconds timeout.- Specified by:
rxShutdown
in interfaceWebSocketBase
- Overrides:
rxShutdown
in classWebSocket
- Parameters:
statusCode
-reason
-- Returns:
-
shutdown
public Future<Void> shutdown(long timeout, TimeUnit unit)
- Specified by:
shutdown
in interfaceWebSocketBase
- Overrides:
shutdown
in classWebSocket
- Parameters:
timeout
-unit
-- Returns:
-
rxShutdown
public Completable rxShutdown(long timeout, TimeUnit unit)
- Specified by:
rxShutdown
in interfaceWebSocketBase
- Overrides:
rxShutdown
in classWebSocket
- Parameters:
timeout
-unit
-- Returns:
-
shutdown
public Future<Void> shutdown(long timeout, TimeUnit unit, short statusCode)
CallsWebSocketBase.shutdown()
with anull
reason.- Specified by:
shutdown
in interfaceWebSocketBase
- Overrides:
shutdown
in classWebSocket
- Parameters:
timeout
-unit
-statusCode
-- Returns:
-
rxShutdown
public Completable rxShutdown(long timeout, TimeUnit unit, short statusCode)
CallsWebSocketBase.shutdown()
with anull
reason.- Specified by:
rxShutdown
in interfaceWebSocketBase
- Overrides:
rxShutdown
in classWebSocket
- Parameters:
timeout
-unit
-statusCode
-- Returns:
-
shutdown
public Future<Void> shutdown(long timeout, TimeUnit unit, short statusCode, String reason)
Initiate a graceful WebSocket shutdown, the shutdown handler is notified and shall close the WebSocket, otherwise after atimeout
the 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- Specified by:
shutdown
in interfaceWebSocketBase
- Overrides:
shutdown
in classWebSocket
- Parameters:
timeout
- the amount of time after which all resources are forcibly closedunit
- the of the timeoutstatusCode
- the status codereason
- reason of closure- Returns:
- a future completed when shutdown has completed
-
rxShutdown
public Completable rxShutdown(long timeout, TimeUnit unit, short statusCode, String reason)
Initiate a graceful WebSocket shutdown, the shutdown handler is notified and shall close the WebSocket, otherwise after atimeout
the 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- Specified by:
rxShutdown
in interfaceWebSocketBase
- Overrides:
rxShutdown
in classWebSocket
- Parameters:
timeout
- the amount of time after which all resources are forcibly closedunit
- the of the timeoutstatusCode
- the status codereason
- reason of closure- Returns:
- a future completed when shutdown has completed
-
remoteAddress
public SocketAddress remoteAddress()
- Specified by:
remoteAddress
in interfaceWebSocketBase
- Overrides:
remoteAddress
in classWebSocket
- Returns:
- the remote address for this connection, possibly
null
(e.g a server bound on a domain socket). IfuseProxyProtocol
is set totrue
, the address returned will be of the actual connecting client.
-
localAddress
public SocketAddress localAddress()
- Specified by:
localAddress
in interfaceWebSocketBase
- Overrides:
localAddress
in classWebSocket
- Returns:
- the local address for this connection, possibly
null
(e.g a server bound on a domain socket) IfuseProxyProtocol
is set totrue
, the address returned will be of the proxy.
-
isSsl
public boolean isSsl()
- Specified by:
isSsl
in interfaceWebSocketBase
- Overrides:
isSsl
in classWebSocket
- Returns:
- true if this
HttpConnection
is encrypted via SSL/TLS.
-
isClosed
public boolean isClosed()
- Specified by:
isClosed
in interfaceWebSocketBase
- Overrides:
isClosed
in classWebSocket
- Returns:
true
if the WebSocket cannot be used to send message anymore
-
exceptionHandler
public ServerWebSocket exceptionHandler(Handler<Throwable> handler)
Description copied from interface:ReadStream
Set an exception handler on the read stream.- Specified by:
exceptionHandler
in interfaceReadStream<Buffer>
- Specified by:
exceptionHandler
in interfaceStreamBase
- Specified by:
exceptionHandler
in interfaceWebSocketBase
- Specified by:
exceptionHandler
in interfaceWriteStream<Buffer>
- Overrides:
exceptionHandler
in classWebSocket
- Parameters:
handler
- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
handler
public ServerWebSocket handler(Handler<Buffer> handler)
Description copied from interface:ReadStream
Set a data handler. As data is read, the handler will be called with the data.- Specified by:
handler
in interfaceReadStream<Buffer>
- Specified by:
handler
in interfaceWebSocketBase
- Overrides:
handler
in classWebSocket
- Returns:
- a reference to this, so the API can be used fluently
-
pause
public ServerWebSocket pause()
Description copied from interface:ReadStream
Pause theReadStream
, it sets the buffer infetch
mode and clears the actual demand.While it's paused, no data will be sent to the data
handler
.- Specified by:
pause
in interfaceReadStream<Buffer>
- Specified by:
pause
in interfaceWebSocketBase
- Overrides:
pause
in classWebSocket
- Returns:
- a reference to this, so the API can be used fluently
-
resume
public ServerWebSocket resume()
Description copied from interface:ReadStream
Resume reading, and sets the buffer inflowing
mode. If theReadStream
has been paused, reading will recommence on it.- Specified by:
resume
in interfaceReadStream<Buffer>
- Specified by:
resume
in interfaceWebSocketBase
- Overrides:
resume
in classWebSocket
- Returns:
- a reference to this, so the API can be used fluently
-
fetch
public ServerWebSocket fetch(long amount)
Description copied from interface:ReadStream
Fetch the specifiedamount
of elements. If theReadStream
has been paused, reading will recommence with the specifiedamount
of items, otherwise the specifiedamount
will be added to the current stream demand.- Specified by:
fetch
in interfaceReadStream<Buffer>
- Specified by:
fetch
in interfaceWebSocketBase
- Overrides:
fetch
in classWebSocket
- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
public ServerWebSocket endHandler(Handler<Void> endHandler)
Description copied from interface:ReadStream
Set an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.- Specified by:
endHandler
in interfaceReadStream<Buffer>
- Specified by:
endHandler
in interfaceWebSocketBase
- Overrides:
endHandler
in classWebSocket
- Returns:
- a reference to this, so the API can be used fluently
-
setWriteQueueMaxSize
public ServerWebSocket setWriteQueueMaxSize(int maxSize)
Description copied from interface:WriteStream
Set the maximum size of the write queue tomaxSize
. You will still be able to write to the stream even if there is more thanmaxSize
items in the write queue. This is used as an indicator by classes such asPipe
to provide flow control. The value is defined by the implementation of the stream, e.g in bytes for aNetSocket
, etc...- Specified by:
setWriteQueueMaxSize
in interfaceWebSocketBase
- Specified by:
setWriteQueueMaxSize
in interfaceWriteStream<Buffer>
- Overrides:
setWriteQueueMaxSize
in classWebSocket
- Parameters:
maxSize
- the max size of the write stream- Returns:
- a reference to this, so the API can be used fluently
-
drainHandler
public ServerWebSocket drainHandler(Handler<Void> handler)
Description copied from interface:WriteStream
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. SeePipe
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
.- Specified by:
drainHandler
in interfaceWebSocketBase
- Specified by:
drainHandler
in interfaceWriteStream<Buffer>
- Overrides:
drainHandler
in classWebSocket
- Parameters:
handler
- the handler- Returns:
- a reference to this, so the API can be used fluently
-
closeHandler
public ServerWebSocket closeHandler(Handler<Void> handler)
Description copied from interface:WebSocketBase
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, theWebSocketBase.closeStatusCode()
will return the status code andWebSocketBase.closeReason()
will return the reason.- Specified by:
closeHandler
in interfaceWebSocketBase
- Overrides:
closeHandler
in classWebSocket
- Parameters:
handler
- the handler- Returns:
- a reference to this, so the API can be used fluently
-
frameHandler
public ServerWebSocket frameHandler(Handler<WebSocketFrame> handler)
Description copied from interface:WebSocketBase
Set a frame handler on the connection. This handler will be called when frames are read on the connection.- Specified by:
frameHandler
in interfaceWebSocketBase
- Overrides:
frameHandler
in classWebSocket
- Parameters:
handler
- the handler- Returns:
- a reference to this, so the API can be used fluently
-
scheme
public String scheme()
- Returns:
- the WebSocket handshake scheme
-
authority
public HostAndPort authority()
- Returns:
- the WebSocket handshake authority
-
uri
public String uri()
-
path
public String path()
- Returns:
- the WebSocket handshake path.
-
query
public String query()
- Returns:
- the WebSocket handshake query string.
-
close
public Future<Void> close()
The WebSocket handshake will be accepted when it hasn't yet been settled or when an asynchronous handshake is in progress.
- Specified by:
close
in interfaceWebSocketBase
- Overrides:
close
in classWebSocket
- Returns:
-
rxClose
public Completable rxClose()
The WebSocket handshake will be accepted when it hasn't yet been settled or when an asynchronous handshake is in progress.
- Specified by:
rxClose
in interfaceWebSocketBase
- Overrides:
rxClose
in classWebSocket
- Returns:
-
sslSession
public SSLSession sslSession()
- Overrides:
sslSession
in classWebSocket
- Returns:
- SSLSession associated with the underlying socket. Returns null if connection is not SSL.
-
newInstance
public static ServerWebSocket newInstance(ServerWebSocket arg)
-
-