- WebSocketClient - Class in org.eclipse.jetty.websocket.client
-
WebSocketClient provides a means of establishing connections to remote websocket endpoints.
- WebSocketClient() - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Instantiate a WebSocketClient with defaults
- WebSocketClient(Executor) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
- WebSocketClient(HttpClient) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Instantiate a WebSocketClient using HttpClient for defaults
- WebSocketClient(HttpClient, DecoratedObjectFactory) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Instantiate a WebSocketClient using HttpClient for defaults
- WebSocketClient(ByteBufferPool) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Create a new WebSocketClient
- WebSocketClient(SslContextFactory) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Create a new WebSocketClient
- WebSocketClient(SslContextFactory, Executor) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
- WebSocketClient(SslContextFactory, Executor, ByteBufferPool) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Create WebSocketClient using sharing instances of SSLContextFactory
Executor, and ByteBufferPool
- WebSocketClient(WebSocketContainerScope) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Create WebSocketClient other Container Scope, to allow sharing of
internal features like Executor, ByteBufferPool, SSLContextFactory, etc.
- WebSocketClient(WebSocketContainerScope, SslContextFactory) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Create WebSocketClient other Container Scope, to allow sharing of
internal features like Executor, ByteBufferPool, SSLContextFactory, etc.
- WebSocketClient(WebSocketContainerScope, EventDriverFactory, SessionFactory) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Create WebSocketClient based on pre-existing Container Scope, to allow sharing of
internal features like Executor, ByteBufferPool, SSLContextFactory, etc.
- WebSocketClient(WebSocketContainerScope, EventDriverFactory, SessionFactory, HttpClient) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketClient
-
Create WebSocketClient based on pre-existing Container Scope, to allow sharing of
internal features like Executor, ByteBufferPool, SSLContextFactory, etc.
- WebSocketClientConnection - Class in org.eclipse.jetty.websocket.client.io
-
Client side WebSocket physical connection.
- WebSocketClientConnection(EndPoint, Executor, Scheduler, WebSocketPolicy, ByteBufferPool) - Constructor for class org.eclipse.jetty.websocket.client.io.WebSocketClientConnection
-
- WebSocketUpgradeRequest - Class in org.eclipse.jetty.websocket.client
-
- WebSocketUpgradeRequest(WebSocketClient, HttpClient, URI, Object) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketUpgradeRequest
-
Initiating a WebSocket Upgrade using HTTP/1.1
- WebSocketUpgradeRequest(WebSocketClient, HttpClient, ClientUpgradeRequest) - Constructor for class org.eclipse.jetty.websocket.client.WebSocketUpgradeRequest
-
Exists for internal use of HttpClient by WebSocketClient.