Class StompBrokerRelayMessageHandler
- All Implemented Interfaces:
Aware
,ApplicationEventPublisherAware
,Lifecycle
,Phased
,SmartLifecycle
,MessageHandler
MessageHandler
that handles messages by
forwarding them to a STOMP broker.
For each new CONNECT
message, an independent TCP
connection to the broker is opened and used exclusively for all messages from the
client that originated the CONNECT message. Messages from the same client are
identified through the session id message header. Reversely, when the STOMP broker
sends messages back on the TCP connection, those messages are enriched with the
session id of the client and sent back downstream through the MessageChannel
provided to the constructor.
This class also automatically opens a default "system" TCP connection to the message broker that is used for sending messages that originate from the server application (as opposed to from a client). Such messages are not associated with any client and therefore do not have a session id header. The "system" connection is effectively shared and cannot be used to receive messages. Several properties are provided to configure the "system" connection including:
- Since:
- 4.0
- Author:
- Rossen Stoyanchev, Andy Wilkinson
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Contract for access to session counters. -
Field Summary
Fields inherited from class org.springframework.messaging.simp.broker.AbstractBrokerMessageHandler
logger
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
ConstructorDescriptionStompBrokerRelayMessageHandler
(SubscribableChannel inboundChannel, MessageChannel outboundChannel, SubscribableChannel brokerChannel, Collection<String> destinationPrefixes) Create a StompBrokerRelayMessageHandler instance with the given message channels and destination prefixes. -
Method Summary
Modifier and TypeMethodDescriptionReturn the configured login to use for connections to the STOMP broker on behalf of connected clients.Return the configured passcode to use for connections to the STOMP broker on behalf of connected clients.int
Return the current count of TCP connection to the broker.Return the configured header initializer.Return the STOMP message broker host.int
Return the STOMP message broker port.getStats()
Return a structured object with internal state and counters.Return a String describing internal state and counters.long
Return the interval, in milliseconds, at which the "system" connection expects to receive heartbeats from the STOMP broker.long
Return the interval, in milliseconds, at which the "system" connection will send heartbeats to the STOMP broker.Return the login used for the shared "system" connection to the STOMP broker.Return the passcode used for the shared "system" connection to the STOMP broker.Return the configured map with subscriptions on the "system" connection.TcpOperations<byte[]>
Get the configured TCP client (nevernull
unless not configured invoked and this method is invoked before the handler is started and hence a default implementation initialized).Return the configured virtual host value.protected void
handleMessageInternal
(Message<?> message) void
setClientLogin
(String clientLogin) Set the login to use when creating connections to the STOMP broker on behalf of connected clients.void
setClientPasscode
(String clientPasscode) Set the client passcode to use to create connections to the STOMP broker on behalf of connected clients.void
setHeaderInitializer
(MessageHeaderInitializer headerInitializer) Configure aMessageHeaderInitializer
to apply to the headers of all messages created through theStompBrokerRelayMessageHandler
that are sent to the client outbound message channel.void
setRelayHost
(String relayHost) Set the STOMP message broker host.void
setRelayPort
(int relayPort) Set the STOMP message broker port.void
setSystemHeartbeatReceiveInterval
(long heartbeatReceiveInterval) Set the maximum interval, in milliseconds, at which the "system" connection expects, in the absence of any other data, to receive a heartbeat from the STOMP broker.void
setSystemHeartbeatSendInterval
(long systemHeartbeatSendInterval) Set the interval, in milliseconds, at which the "system" connection will, in the absence of any other data being sent, send a heartbeat to the STOMP broker.void
setSystemLogin
(String systemLogin) Set the login for the shared "system" connection used to send messages to the STOMP broker from within the application, i.e.void
setSystemPasscode
(String systemPasscode) Set the passcode for the shared "system" connection used to send messages to the STOMP broker from within the application, i.e.void
setSystemSubscriptions
(Map<String, MessageHandler> subscriptions) Configure one more destinations to subscribe to on the shared "system" connection along with MessageHandler's to handle received messages.void
setTaskScheduler
(TaskScheduler taskScheduler) Configure theTaskScheduler
to use to reset client-to-broker message count in the current heartbeat period.void
setTcpClient
(TcpOperations<byte[]> tcpClient) Configure a TCP client for managing TCP connections to the STOMP broker.void
setVirtualHost
(String virtualHost) Set the value of the "host" header to use in STOMP CONNECT frames.protected void
protected void
toString()
Methods inherited from class org.springframework.messaging.simp.broker.AbstractBrokerMessageHandler
checkDestinationPrefix, getApplicationEventPublisher, getBrokerChannel, getClientInboundChannel, getClientOutboundChannel, getClientOutboundChannelForSession, getDestinationPrefixes, getPhase, handleMessage, isAutoStartup, isBrokerAvailable, isPreservePublishOrder, isRunning, publishBrokerAvailableEvent, publishBrokerUnavailableEvent, setApplicationEventPublisher, setAutoStartup, setPhase, setPreservePublishOrder, setUserDestinationPredicate, start, stop, stop
-
Field Details
-
SYSTEM_SESSION_ID
The system session ID.- See Also:
-
-
Constructor Details
-
StompBrokerRelayMessageHandler
public StompBrokerRelayMessageHandler(SubscribableChannel inboundChannel, MessageChannel outboundChannel, SubscribableChannel brokerChannel, Collection<String> destinationPrefixes) Create a StompBrokerRelayMessageHandler instance with the given message channels and destination prefixes.- Parameters:
inboundChannel
- the channel for receiving messages from clients (for example, WebSocket clients)outboundChannel
- the channel for sending messages to clients (for example, WebSocket clients)brokerChannel
- the channel for the application to send messages to the brokerdestinationPrefixes
- the broker supported destination prefixes; destinations that do not match the given prefix are ignored.
-
-
Method Details
-
setRelayHost
Set the STOMP message broker host. -
getRelayHost
Return the STOMP message broker host. -
setRelayPort
public void setRelayPort(int relayPort) Set the STOMP message broker port. -
getRelayPort
public int getRelayPort()Return the STOMP message broker port. -
setClientLogin
Set the login to use when creating connections to the STOMP broker on behalf of connected clients.By default this is set to "guest".
- See Also:
-
getClientLogin
Return the configured login to use for connections to the STOMP broker on behalf of connected clients.- See Also:
-
setClientPasscode
Set the client passcode to use to create connections to the STOMP broker on behalf of connected clients.By default this is set to "guest".
- See Also:
-
getClientPasscode
Return the configured passcode to use for connections to the STOMP broker on behalf of connected clients.- See Also:
-
setSystemLogin
Set the login for the shared "system" connection used to send messages to the STOMP broker from within the application, i.e. messages not associated with a specific client session (for example, REST/HTTP request handling method).By default this is set to "guest".
-
getSystemLogin
Return the login used for the shared "system" connection to the STOMP broker. -
setSystemPasscode
Set the passcode for the shared "system" connection used to send messages to the STOMP broker from within the application, i.e. messages not associated with a specific client session (for example, REST/HTTP request handling method).By default this is set to "guest".
-
getSystemPasscode
Return the passcode used for the shared "system" connection to the STOMP broker. -
setSystemHeartbeatSendInterval
public void setSystemHeartbeatSendInterval(long systemHeartbeatSendInterval) Set the interval, in milliseconds, at which the "system" connection will, in the absence of any other data being sent, send a heartbeat to the STOMP broker. A value of zero will prevent heartbeats from being sent to the broker.The default value is 10000.
See class-level documentation for more information on the "system" connection.
-
getSystemHeartbeatSendInterval
public long getSystemHeartbeatSendInterval()Return the interval, in milliseconds, at which the "system" connection will send heartbeats to the STOMP broker. -
setSystemHeartbeatReceiveInterval
public void setSystemHeartbeatReceiveInterval(long heartbeatReceiveInterval) Set the maximum interval, in milliseconds, at which the "system" connection expects, in the absence of any other data, to receive a heartbeat from the STOMP broker. A value of zero will configure the connection to expect not to receive heartbeats from the broker.The default value is 10000.
See class-level documentation for more information on the "system" connection.
-
getSystemHeartbeatReceiveInterval
public long getSystemHeartbeatReceiveInterval()Return the interval, in milliseconds, at which the "system" connection expects to receive heartbeats from the STOMP broker. -
setSystemSubscriptions
Configure one more destinations to subscribe to on the shared "system" connection along with MessageHandler's to handle received messages.This is for internal use in a multi-application server scenario where servers forward messages to each other (for example, unresolved user destinations).
- Parameters:
subscriptions
- the destinations to subscribe to.
-
getSystemSubscriptions
Return the configured map with subscriptions on the "system" connection. -
setVirtualHost
Set the value of the "host" header to use in STOMP CONNECT frames. When this property is configured, a "host" header will be added to every STOMP frame sent to the STOMP broker. This may be useful for example in a cloud environment where the actual host to which the TCP connection is established is different from the host providing the cloud-based STOMP service.By default this property is not set.
-
getVirtualHost
Return the configured virtual host value. -
setTcpClient
Configure a TCP client for managing TCP connections to the STOMP broker.By default
ReactorNettyTcpClient
orReactorNetty2TcpClient
is used.Note: when this property is used, any
host
orport
specified are effectively ignored. -
getTcpClient
Get the configured TCP client (nevernull
unless not configured invoked and this method is invoked before the handler is started and hence a default implementation initialized). -
setHeaderInitializer
Configure aMessageHeaderInitializer
to apply to the headers of all messages created through theStompBrokerRelayMessageHandler
that are sent to the client outbound message channel.By default this property is not set.
-
getHeaderInitializer
Return the configured header initializer. -
getStatsInfo
Return a String describing internal state and counters. EffectivelytoString()
ongetStats()
. -
getStats
Return a structured object with internal state and counters.- Since:
- 5.2
-
getConnectionCount
public int getConnectionCount()Return the current count of TCP connection to the broker. -
setTaskScheduler
Configure theTaskScheduler
to use to reset client-to-broker message count in the current heartbeat period. For more details, seeStompBrokerRelayRegistration.setTaskScheduler(TaskScheduler)
.- Parameters:
taskScheduler
- the scheduler to use- Since:
- 5.3
-
getTaskScheduler
-
startInternal
protected void startInternal()- Overrides:
startInternal
in classAbstractBrokerMessageHandler
-
stopInternal
protected void stopInternal()- Overrides:
stopInternal
in classAbstractBrokerMessageHandler
-
handleMessageInternal
- Specified by:
handleMessageInternal
in classAbstractBrokerMessageHandler
-
toString
-