Class StompBrokerRelayRegistration
java.lang.Object
org.springframework.messaging.simp.config.AbstractBrokerRegistration
org.springframework.messaging.simp.config.StompBrokerRelayRegistration
Registration class for configuring a
StompBrokerRelayMessageHandler
.- Since:
- 4.0
- Author:
- Rossen Stoyanchev
-
Constructor Summary
ConstructorDescriptionStompBrokerRelayRegistration
(SubscribableChannel clientInboundChannel, MessageChannel clientOutboundChannel, String[] destinationPrefixes) Create a newStompBrokerRelayRegistration
. -
Method Summary
Modifier and TypeMethodDescriptionprotected StompBrokerRelayMessageHandler
getMessageHandler
(SubscribableChannel brokerChannel) protected String
protected String
setAutoStartup
(boolean autoStartup) Configure whether theStompBrokerRelayMessageHandler
should start automatically when the Spring ApplicationContext is refreshed.setClientLogin
(String login) Set the login to use when creating connections to the STOMP broker on behalf of connected clients.setClientPasscode
(String passcode) Set the passcode to use when creating connections to the STOMP broker on behalf of connected clients.setRelayHost
(String relayHost) Set the STOMP message broker host.setRelayPort
(int relayPort) Set the STOMP message broker port.setSystemHeartbeatReceiveInterval
(long heartbeatReceiveInterval) Set the maximum interval, in milliseconds, at which the "system" relay session expects, in the absence of any other data, to receive a heartbeat from the STOMP broker.setSystemHeartbeatSendInterval
(long systemHeartbeatSendInterval) Set the interval, in milliseconds, at which the "system" relay session will, in the absence of any other data being sent, send a heartbeat to the STOMP broker.setSystemLogin
(String login) Set the login for the shared "system" connection used to send messages to the STOMP broker from within the application, i.e.setSystemPasscode
(String passcode) Set the passcode for the shared "system" connection used to send messages to the STOMP broker from within the application, i.e.setTaskScheduler
(TaskScheduler taskScheduler) Some STOMP clients (e.g.setTcpClient
(TcpOperations<byte[]> tcpClient) Configure a TCP client for managing TCP connections to the STOMP broker.setUserDestinationBroadcast
(String destination) Set a destination to broadcast messages to user destinations that remain unresolved because the user appears not to be connected.setUserRegistryBroadcast
(String destination) Set a destination to broadcast the content of the local user registry to and to listen for such broadcasts from other servers.setVirtualHost
(String virtualHost) Set the value of the "host" header to use in STOMP CONNECT frames.Methods inherited from class org.springframework.messaging.simp.config.AbstractBrokerRegistration
getClientInboundChannel, getClientOutboundChannel, getDestinationPrefixes
-
Constructor Details
-
StompBrokerRelayRegistration
public StompBrokerRelayRegistration(SubscribableChannel clientInboundChannel, MessageChannel clientOutboundChannel, String[] destinationPrefixes) Create a newStompBrokerRelayRegistration
.- Parameters:
clientInboundChannel
- the inbound channelclientOutboundChannel
- the outbound channeldestinationPrefixes
- the destination prefixes
-
-
Method Details
-
setRelayHost
Set the STOMP message broker host. -
setRelayPort
Set 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".
-
setClientPasscode
Set the passcode to use when creating connections to the STOMP broker on behalf of connected clients.By default this is set to "guest".
-
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 (e.g. REST/HTTP request handling method).By default this is set to "guest".
-
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 (e.g. REST/HTTP request handling method).By default this is set to "guest".
-
setSystemHeartbeatSendInterval
public StompBrokerRelayRegistration setSystemHeartbeatSendInterval(long systemHeartbeatSendInterval) Set the interval, in milliseconds, at which the "system" relay session 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.
-
setSystemHeartbeatReceiveInterval
public StompBrokerRelayRegistration setSystemHeartbeatReceiveInterval(long heartbeatReceiveInterval) Set the maximum interval, in milliseconds, at which the "system" relay session expects, in the absence of any other data, to receive a heartbeat from the STOMP broker. A value of zero will configure the relay session to expect not to receive heartbeats from the broker.The default value is 10000.
-
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.
-
setTcpClient
Configure a TCP client for managing TCP connections to the STOMP broker.By default
ReactorNettyTcpClient
is used.Note: when this property is used, any
host
orport
specified are effectively ignored.- Since:
- 4.3.15
-
setTaskScheduler
Some STOMP clients (e.g. stomp-js) always send heartbeats at a fixed rate but others (Spring STOMP client) do so only when no other messages are sent. However messages with a non-brokerdestination prefix
aren't forwarded and as a result the broker may deem the connection inactive.When this
TaskScheduler
is set, it is used to reset a count of the number of messages sent from client to broker since the beginning of the current heartbeat period. This is then used to decide whether to send a heartbeat to the broker when ignoring a message with a non-broker destination prefix.- Since:
- 5.3
-
setAutoStartup
Configure whether theStompBrokerRelayMessageHandler
should start automatically when the Spring ApplicationContext is refreshed.The default setting is
true
. -
setUserDestinationBroadcast
Set a destination to broadcast messages to user destinations that remain unresolved because the user appears not to be connected. In a multi-application server scenario this gives other application servers a chance to try.By default this is not set.
- Parameters:
destination
- the destination to broadcast unresolved messages to, e.g. "/topic/unresolved-user-destination"
-
getUserDestinationBroadcast
-
setUserRegistryBroadcast
Set a destination to broadcast the content of the local user registry to and to listen for such broadcasts from other servers. In a multi-application server scenarios this allows each server's user registry to be aware of users connected to other servers.By default this is not set.
- Parameters:
destination
- the destination for broadcasting user registry details, e.g. "/topic/simp-user-registry".
-
getUserRegistryBroadcast
-
getMessageHandler
- Specified by:
getMessageHandler
in classAbstractBrokerRegistration
-