类 JettyWebSocketClient
- java.lang.Object
- org.springframework.web.reactive.socket.client.JettyWebSocketClient
- 所有已实现的接口:
Lifecycle,WebSocketClient
public class JettyWebSocketClient extends Object implements WebSocketClient, Lifecycle
AWebSocketClientimplementation for use with JettyWebSocketClient.Note: the Jetty
WebSocketClientrequires 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.- 从以下版本开始:
- 5.0
- 作者:
- Violeta Georgieva, Rossen Stoyanchev
构造器概要
构造器 构造器 说明 JettyWebSocketClient()Default constructor that creates and manages an instance of a JettyWebSocketClient.JettyWebSocketClient(org.eclipse.jetty.websocket.client.WebSocketClient jettyClient)Constructor that accepts an existing instance of a JettyWebSocketClient.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 reactor.core.publisher.Mono<Void>execute(URI url, HttpHeaders headers, WebSocketHandler handler)A variant ofWebSocketClient.execute(URI, WebSocketHandler)with custom headers.reactor.core.publisher.Mono<Void>execute(URI url, WebSocketHandler handler)Execute a handshake request to the given url and handle the resulting WebSocket session with the given handler.org.eclipse.jetty.websocket.client.WebSocketClientgetJettyClient()Return the underlying JettyWebSocketClient.booleanisRunning()Check whether this component is currently running.voidstart()Start this component.voidstop()Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method.
构造器详细资料
JettyWebSocketClient
public JettyWebSocketClient()
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
Lifecyclemethods of this class are delegated to the JettyWebSocketClient.
JettyWebSocketClient
public JettyWebSocketClient(org.eclipse.jetty.websocket.client.WebSocketClient jettyClient)
Constructor that accepts an existing instance of a JettyWebSocketClient.Note: Use of this constructor implies the Jetty
WebSocketClientis externally managed and henceLifecyclemethods of this class are not delegated to it.
方法详细资料
getJettyClient
public org.eclipse.jetty.websocket.client.WebSocketClient getJettyClient()
Return the underlying JettyWebSocketClient.
start
public void start()
从接口复制的说明:LifecycleStart 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.
- 指定者:
start在接口中Lifecycle- 另请参阅:
SmartLifecycle.isAutoStartup()
stop
public void stop()
从接口复制的说明:LifecycleStop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method. Consider implementingSmartLifecycleand itsstop(Runnable)variant when asynchronous stop behavior is necessary.Note that this stop notification is not guaranteed to come before destruction: On regular shutdown,
Lifecyclebeans 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.
- 指定者:
stop在接口中Lifecycle- 另请参阅:
SmartLifecycle.stop(Runnable),DisposableBean.destroy()
isRunning
public boolean isRunning()
从接口复制的说明:LifecycleCheck whether this component is currently running.In the case of a container, this will return
trueonly if all components that apply are currently running.
execute
public reactor.core.publisher.Mono<Void> execute(URI url, WebSocketHandler handler)
从接口复制的说明:WebSocketClientExecute a handshake request to the given url and handle the resulting WebSocket session with the given handler.- 指定者:
execute在接口中WebSocketClient- 参数:
url- the handshake urlhandler- the handler of the WebSocket session- 返回:
- 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)
从接口复制的说明:WebSocketClientA variant ofWebSocketClient.execute(URI, WebSocketHandler)with custom headers.- 指定者:
execute在接口中WebSocketClient- 参数:
url- the handshake urlheaders- custom headers for the handshake requesthandler- the handler of the WebSocket session- 返回:
- completion
Mono<Void>to indicate the outcome of the WebSocket session handling.