Class JettyWebSocketClient
- All Implemented Interfaces:
Lifecycle
,WebSocketClient
WebSocketClient
implementation for use with Jetty
WebSocketClient
.
Only supported on Jetty 11, superseded by StandardWebSocketClient
.
Note: the Jetty WebSocketClient
requires
lifecycle management and must be started and stopped. This is automatically
managed when this class is declared as a Spring bean and created with the
default constructor. See constructor notes for more details.
- Since:
- 5.0
- Author:
- Violeta Georgieva, Rossen Stoyanchev, Juergen Hoeller
-
Constructor Summary
ConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Default constructor that creates and manages an instance of a JettyWebSocketClient
.JettyWebSocketClient
(org.eclipse.jetty.websocket.client.WebSocketClient jettyClient) Deprecated, for removal: This API element is subject to removal in a future version.Constructor that accepts an existing instance of a JettyWebSocketClient
. -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>
execute
(URI url, HttpHeaders headers, WebSocketHandler handler) Deprecated, for removal: This API element is subject to removal in a future version.A variant ofWebSocketClient.execute(URI, WebSocketHandler)
with custom headers.reactor.core.publisher.Mono<Void>
execute
(URI url, WebSocketHandler handler) Deprecated, for removal: This API element is subject to removal in a future version.Execute a handshake request to the given url and handle the resulting WebSocket session with the given handler.org.eclipse.jetty.websocket.client.WebSocketClient
Deprecated, for removal: This API element is subject to removal in a future version.Return the underlying JettyWebSocketClient
.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Check whether this component is currently running.void
start()
Deprecated, for removal: This API element is subject to removal in a future version.Start this component.void
stop()
Deprecated, for removal: This API element is subject to removal in a future version.Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method.
-
Constructor Details
-
JettyWebSocketClient
public JettyWebSocketClient()Deprecated, for removal: This API element is subject to removal in a future version.Default constructor that creates and manages an instance of a JettyWebSocketClient
. The instance can be obtained withgetJettyClient()
for further configuration.Note: When this constructor is used
Lifecycle
methods of this class are delegated to the JettyWebSocketClient
. -
JettyWebSocketClient
public JettyWebSocketClient(org.eclipse.jetty.websocket.client.WebSocketClient jettyClient) Deprecated, for removal: This API element is subject to removal in a future version.Constructor that accepts an existing instance of a JettyWebSocketClient
.Note: Use of this constructor implies the Jetty
WebSocketClient
is externally managed and henceLifecycle
methods of this class are not delegated to it.
-
-
Method Details
-
getJettyClient
public org.eclipse.jetty.websocket.client.WebSocketClient getJettyClient()Deprecated, for removal: This API element is subject to removal in a future version.Return the underlying JettyWebSocketClient
. -
start
public void start()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Lifecycle
Start this component.Should not throw an exception if the component is already running.
In the case of a container, this will propagate the start signal to all components that apply.
-
stop
public void stop()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Lifecycle
Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method. Consider implementingSmartLifecycle
and itsstop(Runnable)
variant when asynchronous stop behavior is necessary.Note that this stop notification is not guaranteed to come before destruction: On regular shutdown,
Lifecycle
beans will first receive a stop notification before the general destruction callbacks are being propagated; however, on hot refresh during a context's lifetime or on aborted refresh attempts, a given bean's destroy method will be called without any consideration of stop signals upfront.Should not throw an exception if the component is not running (not started yet).
In the case of a container, this will propagate the stop signal to all components that apply.
-
isRunning
public boolean isRunning()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Lifecycle
Check whether this component is currently running.In the case of a container, this will return
true
only if all components that apply are currently running. -
execute
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:WebSocketClient
Execute a handshake request to the given url and handle the resulting WebSocket session with the given handler.- Specified by:
execute
in interfaceWebSocketClient
- Parameters:
url
- the handshake urlhandler
- the handler of the WebSocket session- Returns:
- completion
Mono<Void>
to indicate the outcome of the WebSocket session handling.
-
execute
public reactor.core.publisher.Mono<Void> execute(URI url, HttpHeaders headers, WebSocketHandler handler) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:WebSocketClient
A variant ofWebSocketClient.execute(URI, WebSocketHandler)
with custom headers.- Specified by:
execute
in interfaceWebSocketClient
- Parameters:
url
- the handshake urlheaders
- custom headers for the handshake requesthandler
- the handler of the WebSocket session- Returns:
- completion
Mono<Void>
to indicate the outcome of the WebSocket session handling.
-
StandardWebSocketClient