Class WebSocketStompClient
java.lang.Object
org.springframework.messaging.simp.stomp.StompClientSupport
org.springframework.web.socket.messaging.WebSocketStompClient
- All Implemented Interfaces:
org.springframework.context.Lifecycle
,org.springframework.context.Phased
,org.springframework.context.SmartLifecycle
public class WebSocketStompClient
extends org.springframework.messaging.simp.stomp.StompClientSupport
implements org.springframework.context.SmartLifecycle
A STOMP over WebSocket client that connects using an implementation of
WebSocketClient
including SockJsClient
.- Since:
- 4.2
- Author:
- Rossen Stoyanchev, Injae Kim
-
Field Summary
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCompletableFuture
<org.springframework.messaging.simp.stomp.StompSession> connectAsync
(String url, org.springframework.messaging.simp.stomp.StompSessionHandler handler, @Nullable Object... uriVars) Connect to the given WebSocket URL and notify the givenStompSessionHandler
when connected on the STOMP level after the CONNECTED frame is received.CompletableFuture
<org.springframework.messaging.simp.stomp.StompSession> connectAsync
(String url, @Nullable WebSocketHttpHeaders handshakeHeaders, @Nullable org.springframework.messaging.simp.stomp.StompHeaders connectHeaders, org.springframework.messaging.simp.stomp.StompSessionHandler handler, @Nullable Object... uriVariables) An overloaded version ofconnectAsync(String, StompSessionHandler, Object...)
that also acceptsWebSocketHttpHeaders
to use for the WebSocket handshake andStompHeaders
for the STOMP CONNECT frame.CompletableFuture
<org.springframework.messaging.simp.stomp.StompSession> connectAsync
(String url, @Nullable WebSocketHttpHeaders handshakeHeaders, org.springframework.messaging.simp.stomp.StompSessionHandler handler, @Nullable Object... uriVariables) An overloaded version ofconnectAsync(String, StompSessionHandler, Object...)
that also acceptsWebSocketHttpHeaders
to use for the WebSocket handshake.CompletableFuture
<org.springframework.messaging.simp.stomp.StompSession> connectAsync
(URI url, @Nullable WebSocketHttpHeaders handshakeHeaders, @Nullable org.springframework.messaging.simp.stomp.StompHeaders connectHeaders, org.springframework.messaging.simp.stomp.StompSessionHandler sessionHandler) An overloaded version ofconnectAsync(String, WebSocketHttpHeaders, StompSessionHandler, Object...)
that accepts a fully preparedURI
.int
Get the configured inbound message buffer size in bytes.Get the configured outbound message buffer size in bytes.int
getPhase()
Return the configured phase.Return the configured WebSocketClient.boolean
Return the value for the 'autoStartup' property.boolean
protected org.springframework.messaging.simp.stomp.StompHeaders
processConnectHeaders
(@Nullable org.springframework.messaging.simp.stomp.StompHeaders connectHeaders) void
setAutoStartup
(boolean autoStartup) Set whether to auto-start the contained WebSocketClient when the Spring context has been refreshed.void
setInboundMessageSizeLimit
(int inboundMessageSizeLimit) Configure the maximum size allowed for inbound STOMP message.void
setOutboundMessageSizeLimit
(Integer outboundMessageSizeLimit) Configure the maximum size allowed for outbound STOMP message.void
setPhase
(int phase) Specify the phase in which the WebSocket client should be started and subsequently closed.void
setTaskScheduler
(@Nullable org.springframework.scheduling.TaskScheduler taskScheduler) void
start()
void
stop()
Methods inherited from class org.springframework.messaging.simp.stomp.StompClientSupport
createSession, getDefaultHeartbeat, getMessageConverter, getReceiptTimeLimit, getTaskScheduler, isDefaultHeartbeatEnabled, setDefaultHeartbeat, setMessageConverter, setReceiptTimeLimit
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.context.SmartLifecycle
stop
-
Constructor Details
-
WebSocketStompClient
Class constructor. SetsStompClientSupport.setDefaultHeartbeat(long[])
to "0,0" but will reset it back to the preferred "10000,10000" when asetTaskScheduler(org.springframework.scheduling.TaskScheduler)
is configured.- Parameters:
webSocketClient
- the WebSocket client to connect with
-
-
Method Details
-
getWebSocketClient
Return the configured WebSocketClient. -
setTaskScheduler
Also automatically sets the
defaultHeartbeat
property to "10000,10000" if it is currently set to "0,0".- Overrides:
setTaskScheduler
in classorg.springframework.messaging.simp.stomp.StompClientSupport
-
setInboundMessageSizeLimit
public void setInboundMessageSizeLimit(int inboundMessageSizeLimit) Configure the maximum size allowed for inbound STOMP message. Since a STOMP message can be received in multiple WebSocket messages, buffering may be required and this property determines the maximum buffer size per message.By default this is set to 64 * 1024 (64K).
-
getInboundMessageSizeLimit
public int getInboundMessageSizeLimit()Get the configured inbound message buffer size in bytes. -
setOutboundMessageSizeLimit
Configure the maximum size allowed for outbound STOMP message. If STOMP message's size exceedsoutboundMessageSizeLimit
, STOMP message is split into multiple frames.By default this is not set in which case each STOMP message are not split.
- Since:
- 6.2
-
getOutboundMessageSizeLimit
-
setAutoStartup
public void setAutoStartup(boolean autoStartup) Set whether to auto-start the contained WebSocketClient when the Spring context has been refreshed.Default is "true".
-
isAutoStartup
public boolean isAutoStartup()Return the value for the 'autoStartup' property. If "true", this client will automatically start and stop the contained WebSocketClient.- Specified by:
isAutoStartup
in interfaceorg.springframework.context.SmartLifecycle
-
setPhase
public void setPhase(int phase) Specify the phase in which the WebSocket client should be started and subsequently closed. The startup order proceeds from lowest to highest, and the shutdown order is the reverse of that.By default this is Integer.MAX_VALUE meaning that the WebSocket client is started as late as possible and stopped as soon as possible.
-
getPhase
public int getPhase()Return the configured phase.- Specified by:
getPhase
in interfaceorg.springframework.context.Phased
- Specified by:
getPhase
in interfaceorg.springframework.context.SmartLifecycle
-
start
public void start()- Specified by:
start
in interfaceorg.springframework.context.Lifecycle
-
stop
public void stop()- Specified by:
stop
in interfaceorg.springframework.context.Lifecycle
-
isRunning
public boolean isRunning()- Specified by:
isRunning
in interfaceorg.springframework.context.Lifecycle
-
connectAsync
public CompletableFuture<org.springframework.messaging.simp.stomp.StompSession> connectAsync(String url, org.springframework.messaging.simp.stomp.StompSessionHandler handler, @Nullable Object... uriVars) Connect to the given WebSocket URL and notify the givenStompSessionHandler
when connected on the STOMP level after the CONNECTED frame is received.- Parameters:
url
- the url to connect tohandler
- the session handleruriVars
- the URI variables to expand into the URL- Returns:
- a CompletableFuture for access to the session when ready for use
- Since:
- 6.0
-
connectAsync
public CompletableFuture<org.springframework.messaging.simp.stomp.StompSession> connectAsync(String url, @Nullable WebSocketHttpHeaders handshakeHeaders, org.springframework.messaging.simp.stomp.StompSessionHandler handler, @Nullable Object... uriVariables) An overloaded version ofconnectAsync(String, StompSessionHandler, Object...)
that also acceptsWebSocketHttpHeaders
to use for the WebSocket handshake.- Parameters:
url
- the url to connect tohandshakeHeaders
- the headers for the WebSocket handshakehandler
- the session handleruriVariables
- the URI variables to expand into the URL- Returns:
- a
ListenableFuture
for access to the session when ready for use - Since:
- 6.0
-
connectAsync
public CompletableFuture<org.springframework.messaging.simp.stomp.StompSession> connectAsync(String url, @Nullable WebSocketHttpHeaders handshakeHeaders, @Nullable org.springframework.messaging.simp.stomp.StompHeaders connectHeaders, org.springframework.messaging.simp.stomp.StompSessionHandler handler, @Nullable Object... uriVariables) An overloaded version ofconnectAsync(String, StompSessionHandler, Object...)
that also acceptsWebSocketHttpHeaders
to use for the WebSocket handshake andStompHeaders
for the STOMP CONNECT frame.- Parameters:
url
- the url to connect tohandshakeHeaders
- headers for the WebSocket handshakeconnectHeaders
- headers for the STOMP CONNECT framehandler
- the session handleruriVariables
- the URI variables to expand into the URL- Returns:
- a CompletableFuture for access to the session when ready for use
- Since:
- 6.0
-
connectAsync
public CompletableFuture<org.springframework.messaging.simp.stomp.StompSession> connectAsync(URI url, @Nullable WebSocketHttpHeaders handshakeHeaders, @Nullable org.springframework.messaging.simp.stomp.StompHeaders connectHeaders, org.springframework.messaging.simp.stomp.StompSessionHandler sessionHandler) An overloaded version ofconnectAsync(String, WebSocketHttpHeaders, StompSessionHandler, Object...)
that accepts a fully preparedURI
.- Parameters:
url
- the url to connect tohandshakeHeaders
- the headers for the WebSocket handshakeconnectHeaders
- headers for the STOMP CONNECT framesessionHandler
- the STOMP session handler- Returns:
- a CompletableFuture for access to the session when ready for use
- Since:
- 6.0
-
processConnectHeaders
protected org.springframework.messaging.simp.stomp.StompHeaders processConnectHeaders(@Nullable org.springframework.messaging.simp.stomp.StompHeaders connectHeaders) - Overrides:
processConnectHeaders
in classorg.springframework.messaging.simp.stomp.StompClientSupport
-