Modifier and Type | Method and Description |
---|---|
Set<WebSocketChannel> | ServletWebSocketHttpExchange.getPeerConnections() |
Constructor and Description |
---|
ServletWebSocketHttpExchange(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Set<WebSocketChannel> peerConnections) |
Modifier and Type | Method and Description |
---|---|
Set<WebSocketChannel> | WebSocketProtocolHandshakeHandler.getPeerConnections() |
Modifier and Type | Method and Description |
---|---|
void | WebSocketConnectionCallback.onConnect(WebSocketHttpExchange exchange, WebSocketChannel channel) Is called once the WebSocket connection is established, which means the handshake was successful. |
Modifier and Type | Method and Description |
---|---|
WebSocketChannel | WebSocket13ClientHandshake.createChannel(org.xnio.StreamConnection channel, String wsUri, ByteBufferPool bufferPool, org.xnio.OptionMap options) |
abstract WebSocketChannel | WebSocketClientHandshake.createChannel(org.xnio.StreamConnection channel, String wsUri, ByteBufferPool bufferPool, org.xnio.OptionMap options) |
Modifier and Type | Method and Description |
---|---|
org.xnio.IoFuture<WebSocketChannel> | WebSocketClient.ConnectionBuilder.connect() |
static org.xnio.IoFuture<WebSocketChannel> | WebSocketClient.connect(org.xnio.XnioWorker worker, ByteBufferPool bufferPool, org.xnio.OptionMap optionMap, URI uri, WebSocketVersion version) Deprecated. |
static org.xnio.IoFuture<WebSocketChannel> | WebSocketClient.connect(org.xnio.XnioWorker worker, ByteBufferPool bufferPool, org.xnio.OptionMap optionMap, URI uri, WebSocketVersion version, WebSocketClientNegotiation clientNegotiation) Deprecated. |
static org.xnio.IoFuture<WebSocketChannel> | WebSocketClient.connect(org.xnio.XnioWorker worker, org.xnio.ssl.XnioSsl ssl, ByteBufferPool bufferPool, org.xnio.OptionMap optionMap, InetSocketAddress bindAddress, URI uri, WebSocketVersion version, WebSocketClientNegotiation clientNegotiation, Set<ExtensionHandshake> clientExtensions) Deprecated. |
static org.xnio.IoFuture<WebSocketChannel> | WebSocketClient.connect(org.xnio.XnioWorker worker, org.xnio.ssl.XnioSsl ssl, ByteBufferPool bufferPool, org.xnio.OptionMap optionMap, URI uri, WebSocketVersion version) Deprecated. |
static org.xnio.IoFuture<WebSocketChannel> | WebSocketClient.connect(org.xnio.XnioWorker worker, org.xnio.ssl.XnioSsl ssl, ByteBufferPool bufferPool, org.xnio.OptionMap optionMap, URI uri, WebSocketVersion version, WebSocketClientNegotiation clientNegotiation) Deprecated. |
static org.xnio.IoFuture<WebSocketChannel> | WebSocketClient.connect(org.xnio.XnioWorker worker, org.xnio.ssl.XnioSsl ssl, ByteBufferPool bufferPool, org.xnio.OptionMap optionMap, URI uri, WebSocketVersion version, WebSocketClientNegotiation clientNegotiation, Set<ExtensionHandshake> clientExtensions) Deprecated. |
Modifier and Type | Method and Description |
---|---|
protected WebSocketChannel | StreamSourceFrameChannel.getFramedChannel() |
WebSocketChannel | StreamSinkFrameChannel.getWebSocketChannel() |
WebSocketChannel | StreamSourceFrameChannel.getWebSocketChannel() |
Modifier and Type | Method and Description |
---|---|
Set<WebSocketChannel> | WebSocketChannel.getPeerConnections() Returns all 'peer' web socket connections that were created from the same endpoint. |
protected Collection<AbstractFramedStreamSourceChannel<WebSocketChannel,StreamSourceFrameChannel,StreamSinkFrameChannel>> | WebSocketChannel.getReceivers() |
Modifier and Type | Method and Description |
---|---|
void | WebSocketCallback.complete(WebSocketChannel channel, T context) |
static void | WebSocketUtils.echoFrame(WebSocketChannel channel, StreamSourceFrameChannel ws) Echo back the frame to the sender |
void | AbstractReceiveListener.handleEvent(WebSocketChannel channel) |
protected void | AbstractReceiveListener.onBinary(WebSocketChannel webSocketChannel, StreamSourceFrameChannel messageChannel) |
protected void | AbstractReceiveListener.onClose(WebSocketChannel webSocketChannel, StreamSourceFrameChannel channel) |
protected void | AbstractReceiveListener.onCloseMessage(CloseMessage cm, WebSocketChannel channel) |
protected void | AbstractReceiveListener.onError(WebSocketChannel channel, Throwable error) |
void | WebSocketCallback.onError(WebSocketChannel channel, T context, Throwable throwable) |
protected void | AbstractReceiveListener.onFullBinaryMessage(WebSocketChannel channel, BufferedBinaryMessage message) |
protected void | AbstractReceiveListener.onFullCloseMessage(WebSocketChannel channel, BufferedBinaryMessage message) |
protected void | AbstractReceiveListener.onFullPingMessage(WebSocketChannel channel, BufferedBinaryMessage message) |
protected void | AbstractReceiveListener.onFullPongMessage(WebSocketChannel channel, BufferedBinaryMessage message) |
protected void | AbstractReceiveListener.onFullTextMessage(WebSocketChannel channel, BufferedTextMessage message) |
protected void | AbstractReceiveListener.onPing(WebSocketChannel webSocketChannel, StreamSourceFrameChannel channel) |
protected void | AbstractReceiveListener.onPong(WebSocketChannel webSocketChannel, StreamSourceFrameChannel messageChannel) |
protected void | AbstractReceiveListener.onText(WebSocketChannel webSocketChannel, StreamSourceFrameChannel messageChannel) |
static <T> void | WebSockets.sendBinary(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete binary message, invoking the callback when complete |
static <T> void | WebSockets.sendBinary(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete binary message, invoking the callback when complete |
static void | WebSockets.sendBinary(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete binary message, invoking the callback when complete |
static void | WebSockets.sendBinary(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete binary message, invoking the callback when complete |
static <T> void | WebSockets.sendBinary(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete binary message, invoking the callback when complete |
static <T> void | WebSockets.sendBinary(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete binary message, invoking the callback when complete |
static void | WebSockets.sendBinary(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete binary message, invoking the callback when complete |
static void | WebSockets.sendBinary(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete binary message, invoking the callback when complete |
static <T> void | WebSockets.sendBinary(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete binary message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static <T> void | WebSockets.sendBinary(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete binary message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendBinary(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete binary message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendBinary(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete binary message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendBinaryBlocking(ByteBuffer[] data, WebSocketChannel wsChannel) Sends a complete binary message using blocking IO |
static void | WebSockets.sendBinaryBlocking(ByteBuffer data, WebSocketChannel wsChannel) Sends a complete binary message using blocking IO |
static void | WebSockets.sendBinaryBlocking(PooledByteBuffer pooledData, WebSocketChannel wsChannel) Sends a complete binary message using blocking IO Automatically frees the pooled byte buffer when done. |
static <T> void | WebSockets.sendClose(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete close message, invoking the callback when complete |
static void | WebSockets.sendClose(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete close message, invoking the callback when complete |
static <T> void | WebSockets.sendClose(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete close message, invoking the callback when complete |
static void | WebSockets.sendClose(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete close message, invoking the callback when complete |
static <T> void | WebSockets.sendClose(CloseMessage closeMessage, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete close message, invoking the callback when complete |
static void | WebSockets.sendClose(CloseMessage closeMessage, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete close message, invoking the callback when complete |
static <T> void | WebSockets.sendClose(int code, String reason, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete close message, invoking the callback when complete |
static void | WebSockets.sendClose(int code, String reason, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete close message, invoking the callback when complete |
static void | WebSockets.sendCloseBlocking(ByteBuffer[] data, WebSocketChannel wsChannel) Sends a complete close message, invoking the callback when complete |
static void | WebSockets.sendCloseBlocking(ByteBuffer data, WebSocketChannel wsChannel) Sends a complete close message, invoking the callback when complete |
static void | WebSockets.sendCloseBlocking(CloseMessage closeMessage, WebSocketChannel wsChannel) Sends a complete close message, invoking the callback when complete |
static void | WebSockets.sendCloseBlocking(int code, String reason, WebSocketChannel wsChannel) Sends a complete close message, invoking the callback when complete |
static <T> void | WebSockets.sendPing(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete ping message, invoking the callback when complete |
static <T> void | WebSockets.sendPing(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete ping message, invoking the callback when complete |
static void | WebSockets.sendPing(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete ping message, invoking the callback when complete |
static void | WebSockets.sendPing(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete ping message, invoking the callback when complete |
static <T> void | WebSockets.sendPing(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete ping message, invoking the callback when complete |
static <T> void | WebSockets.sendPing(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete ping message, invoking the callback when complete |
static void | WebSockets.sendPing(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete ping message, invoking the callback when complete |
static void | WebSockets.sendPing(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete ping message, invoking the callback when complete |
static <T> void | WebSockets.sendPing(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete ping message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static <T> void | WebSockets.sendPing(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete ping message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendPing(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete ping message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendPing(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete ping message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendPingBlocking(ByteBuffer[] data, WebSocketChannel wsChannel) Sends a complete ping message using blocking IO |
static void | WebSockets.sendPingBlocking(ByteBuffer data, WebSocketChannel wsChannel) Sends a complete ping message using blocking IO |
static void | WebSockets.sendPingBlocking(PooledByteBuffer pooledData, WebSocketChannel wsChannel) Sends a complete ping message using blocking IO Automatically frees the pooled byte buffer when done. |
static <T> void | WebSockets.sendPong(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete pong message, invoking the callback when complete |
static <T> void | WebSockets.sendPong(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete pong message, invoking the callback when complete |
static void | WebSockets.sendPong(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete pong message, invoking the callback when complete |
static void | WebSockets.sendPong(ByteBuffer[] data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete pong message, invoking the callback when complete |
static <T> void | WebSockets.sendPong(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete pong message, invoking the callback when complete |
static <T> void | WebSockets.sendPong(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete pong message, invoking the callback when complete |
static void | WebSockets.sendPong(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete pong message, invoking the callback when complete |
static void | WebSockets.sendPong(ByteBuffer data, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete pong message, invoking the callback when complete |
static <T> void | WebSockets.sendPong(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete pong message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static <T> void | WebSockets.sendPong(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete pong message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendPong(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete pong message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendPong(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete pong message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendPongBlocking(ByteBuffer[] data, WebSocketChannel wsChannel) Sends a complete pong message using blocking IO |
static void | WebSockets.sendPongBlocking(ByteBuffer data, WebSocketChannel wsChannel) Sends a complete pong message using blocking IO |
static void | WebSockets.sendPongBlocking(PooledByteBuffer pooledData, WebSocketChannel wsChannel) Sends a complete pong message using blocking IO Automatically frees the pooled byte buffer when done. |
static <T> void | WebSockets.sendText(ByteBuffer message, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete text message, invoking the callback when complete |
static <T> void | WebSockets.sendText(ByteBuffer message, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete text message, invoking the callback when complete |
static void | WebSockets.sendText(ByteBuffer message, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete text message, invoking the callback when complete |
static void | WebSockets.sendText(ByteBuffer message, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete text message, invoking the callback when complete |
static <T> void | WebSockets.sendText(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete text message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static <T> void | WebSockets.sendText(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete text message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendText(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete text message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendText(PooledByteBuffer pooledData, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete text message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static <T> void | WebSockets.sendText(String message, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context) Sends a complete text message, invoking the callback when complete |
static <T> void | WebSockets.sendText(String message, WebSocketChannel wsChannel, WebSocketCallback<T> callback, T context, long timeoutmillis) Sends a complete text message, invoking the callback when complete |
static void | WebSockets.sendText(String message, WebSocketChannel wsChannel, WebSocketCallback<Void> callback) Sends a complete text message, invoking the callback when complete |
static void | WebSockets.sendText(String message, WebSocketChannel wsChannel, WebSocketCallback<Void> callback, long timeoutmillis) Sends a complete text message, invoking the callback when complete |
static void | WebSockets.sendTextBlocking(ByteBuffer message, WebSocketChannel wsChannel) Sends a complete text message, invoking the callback when complete |
static void | WebSockets.sendTextBlocking(PooledByteBuffer pooledData, WebSocketChannel wsChannel) Sends a complete text message, invoking the callback when complete Automatically frees the pooled byte buffer when done. |
static void | WebSockets.sendTextBlocking(String message, WebSocketChannel wsChannel) Sends a complete text message, invoking the callback when complete |
Constructor and Description |
---|
StreamSinkFrameChannel(WebSocketChannel channel, WebSocketFrameType type) |
StreamSourceFrameChannel(WebSocketChannel wsChannel, WebSocketFrameType type, int rsv, boolean finalFragment, PooledByteBuffer pooled, long frameLength, Masker masker, ChannelFunction... functions) |
StreamSourceFrameChannel(WebSocketChannel wsChannel, WebSocketFrameType type, PooledByteBuffer pooled, long frameLength) |
Constructor and Description |
---|
WebSocketChannel(org.xnio.StreamConnection connectedStreamChannel, ByteBufferPool bufferPool, WebSocketVersion version, String wsUrl, String subProtocol, boolean client, boolean extensionsSupported, ExtensionFunction extensionFunction, Set<WebSocketChannel> peerConnections, org.xnio.OptionMap options) Create a new WebSocketChannel 8 |
Modifier and Type | Method and Description |
---|---|
abstract WebSocketChannel | Handshake.createChannel(WebSocketHttpExchange exchange, org.xnio.StreamConnection channel, ByteBufferPool pool) Create the WebSocketChannel from the WebSocketHttpExchange |
Modifier and Type | Class and Description |
---|---|
class | WebSocket07Channel WebSocketChannel which is used for WebSocketVersion.V08 |
Modifier and Type | Method and Description |
---|---|
WebSocketChannel | Hybi07Handshake.createChannel(WebSocketHttpExchange exchange, org.xnio.StreamConnection channel, ByteBufferPool pool) |
Constructor and Description |
---|
WebSocket07Channel(org.xnio.StreamConnection channel, ByteBufferPool bufferPool, String wsUrl, String subProtocol, boolean client, boolean allowExtensions, ExtensionFunction extensionFunction, Set<WebSocketChannel> openConnections, org.xnio.OptionMap options) Create a new WebSocket07Channel |
Modifier and Type | Class and Description |
---|---|
class | WebSocket08Channel WebSocketChannel which is used for WebSocketVersion.V08 |
Modifier and Type | Method and Description |
---|---|
WebSocketChannel | Hybi08Handshake.createChannel(WebSocketHttpExchange exchange, org.xnio.StreamConnection channel, ByteBufferPool pool) |
Constructor and Description |
---|
WebSocket08Channel(org.xnio.StreamConnection channel, ByteBufferPool bufferPool, String wsUrl, String subProtocols, boolean client, boolean allowExtensions, ExtensionFunction extensionFunction, Set<WebSocketChannel> openConnections, org.xnio.OptionMap options) |
Modifier and Type | Class and Description |
---|---|
class | WebSocket13Channel A WebSocketChannel that handles version 13 |
Modifier and Type | Method and Description |
---|---|
WebSocketChannel | Hybi13Handshake.createChannel(WebSocketHttpExchange exchange, org.xnio.StreamConnection channel, ByteBufferPool pool) |
Constructor and Description |
---|
WebSocket13Channel(org.xnio.StreamConnection channel, ByteBufferPool bufferPool, String wsUrl, String subProtocols, boolean client, boolean allowExtensions, ExtensionFunction extensionFunction, Set<WebSocketChannel> openConnections, org.xnio.OptionMap options) |
Modifier and Type | Method and Description |
---|---|
WebSocketChannel | UndertowSession.getWebSocketChannel() |
Modifier and Type | Method and Description |
---|---|
void | EndpointSessionHandler.onConnect(WebSocketHttpExchange exchange, WebSocketChannel channel) |
Modifier and Type | Method and Description |
---|---|
void | UndertowSession.setReceiveListener(org.xnio.ChannelListener<WebSocketChannel> handler) sets the recieve listener This should only be used for annotated endpoints. |
Modifier and Type | Method and Description |
---|---|
WebSocketChannel | JsrHybi07Handshake.createChannel(WebSocketHttpExchange exchange, org.xnio.StreamConnection c, ByteBufferPool buffers) |
WebSocketChannel | JsrHybi13Handshake.createChannel(WebSocketHttpExchange exchange, org.xnio.StreamConnection c, ByteBufferPool buffers) |
WebSocketChannel | JsrHybi08Handshake.createChannel(WebSocketHttpExchange exchange, org.xnio.StreamConnection c, ByteBufferPool buffers) |
Modifier and Type | Method and Description |
---|---|
static ConfiguredServerEndpoint | HandshakeUtil.getConfig(WebSocketChannel channel) Returns the ConfiguredServerEndpoint which was used while create the WebSocketChannel . |
static void | HandshakeUtil.setConfig(WebSocketChannel channel, ConfiguredServerEndpoint config) Set the ConfiguredServerEndpoint which is used to create the WebSocketChannel . |
Modifier and Type | Method and Description |
---|---|
Set<WebSocketChannel> | AsyncWebSocketHttpServerExchange.getPeerConnections() |
Set<WebSocketChannel> | WebSocketHttpExchange.getPeerConnections() |
Constructor and Description |
---|
AsyncWebSocketHttpServerExchange(HttpServerExchange exchange, Set<WebSocketChannel> peerConnections) |
BlockingWebSocketHttpServerExchange(HttpServerExchange exchange, Set<WebSocketChannel> peerConnections) |
Copyright © 2020 JBoss by Red Hat. All rights reserved.