public class StompBrokerRelayRegistration extends AbstractBrokerRegistration
StompBrokerRelayMessageHandler
.Constructor and Description |
---|
StompBrokerRelayRegistration(SubscribableChannel clientInboundChannel,
MessageChannel clientOutboundChannel,
String[] destinationPrefixes)
Create a new
StompBrokerRelayRegistration . |
Modifier and Type | Method and Description |
---|---|
protected StompBrokerRelayMessageHandler |
getMessageHandler(SubscribableChannel brokerChannel) |
protected String |
getUserDestinationBroadcast() |
protected String |
getUserRegistryBroadcast() |
StompBrokerRelayRegistration |
setAutoStartup(boolean autoStartup)
Configure whether the
StompBrokerRelayMessageHandler should start
automatically when the Spring ApplicationContext is refreshed. |
StompBrokerRelayRegistration |
setClientLogin(String login)
Set the login to use when creating connections to the STOMP broker on
behalf of connected clients.
|
StompBrokerRelayRegistration |
setClientPasscode(String passcode)
Set the passcode to use when creating connections to the STOMP broker on
behalf of connected clients.
|
StompBrokerRelayRegistration |
setRelayHost(String relayHost)
Set the STOMP message broker host.
|
StompBrokerRelayRegistration |
setRelayPort(int relayPort)
Set the STOMP message broker port.
|
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.
|
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.
|
StompBrokerRelayRegistration |
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.
|
StompBrokerRelayRegistration |
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.
|
StompBrokerRelayRegistration |
setTaskScheduler(TaskScheduler taskScheduler)
Some STOMP clients (e.g.
|
StompBrokerRelayRegistration |
setTcpClient(TcpOperations<byte[]> tcpClient)
Configure a TCP client for managing TCP connections to the STOMP broker.
|
StompBrokerRelayRegistration |
setUserDestinationBroadcast(String destination)
Set a destination to broadcast messages to user destinations that remain
unresolved because the user appears not to be connected.
|
StompBrokerRelayRegistration |
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.
|
StompBrokerRelayRegistration |
setVirtualHost(String virtualHost)
Set the value of the "host" header to use in STOMP CONNECT frames.
|
getClientInboundChannel, getClientOutboundChannel, getDestinationPrefixes
public StompBrokerRelayRegistration(SubscribableChannel clientInboundChannel, MessageChannel clientOutboundChannel, String[] destinationPrefixes)
StompBrokerRelayRegistration
.clientInboundChannel
- the inbound channelclientOutboundChannel
- the outbound channeldestinationPrefixes
- the destination prefixespublic StompBrokerRelayRegistration setRelayHost(String relayHost)
public StompBrokerRelayRegistration setRelayPort(int relayPort)
public StompBrokerRelayRegistration setClientLogin(String login)
By default this is set to "guest".
public StompBrokerRelayRegistration setClientPasscode(String passcode)
By default this is set to "guest".
public StompBrokerRelayRegistration setSystemLogin(String login)
By default this is set to "guest".
public StompBrokerRelayRegistration setSystemPasscode(String passcode)
By default this is set to "guest".
public StompBrokerRelayRegistration setSystemHeartbeatSendInterval(long systemHeartbeatSendInterval)
The default value is 10000.
public StompBrokerRelayRegistration setSystemHeartbeatReceiveInterval(long heartbeatReceiveInterval)
The default value is 10000.
public StompBrokerRelayRegistration setVirtualHost(String virtualHost)
By default this property is not set.
public StompBrokerRelayRegistration setTcpClient(TcpOperations<byte[]> tcpClient)
By default ReactorNettyTcpClient
is used.
Note: when this property is used, any
host
or port
specified are effectively ignored.
public StompBrokerRelayRegistration setTaskScheduler(@Nullable TaskScheduler taskScheduler)
destination 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.
public StompBrokerRelayRegistration setAutoStartup(boolean autoStartup)
StompBrokerRelayMessageHandler
should start
automatically when the Spring ApplicationContext is refreshed.
The default setting is true
.
public StompBrokerRelayRegistration setUserDestinationBroadcast(String destination)
By default this is not set.
destination
- the destination to broadcast unresolved messages to,
e.g. "/topic/unresolved-user-destination"public StompBrokerRelayRegistration setUserRegistryBroadcast(String destination)
By default this is not set.
destination
- the destination for broadcasting user registry details,
e.g. "/topic/simp-user-registry".protected StompBrokerRelayMessageHandler getMessageHandler(SubscribableChannel brokerChannel)
getMessageHandler
in class AbstractBrokerRegistration