Class ReactorNettyTcpStompClient
java.lang.Object
org.springframework.messaging.simp.stomp.StompClientSupport
org.springframework.messaging.simp.stomp.ReactorNettyTcpStompClient
A STOMP over TCP client, configurable with 
ReactorNettyTcpClient.- Since:
- 5.0
- Author:
- Rossen Stoyanchev
- 
Constructor SummaryConstructorsConstructorDescriptionCreate an instance with host "127.0.0.1" and port 61613.ReactorNettyTcpStompClient(String host, int port) Create an instance with the given host and port.ReactorNettyTcpStompClient(TcpOperations<byte[]> tcpClient) Create an instance with a pre-configured TCP client.
- 
Method SummaryModifier and TypeMethodDescriptionconnectAsync(@Nullable StompHeaders connectHeaders, StompSessionHandler handler) An overloaded version ofconnectAsync(StompSessionHandler)that accepts headers to use for the STOMP CONNECT frame.connectAsync(StompSessionHandler handler) Connect and notify the givenStompSessionHandlerwhen connected on the STOMP level.voidshutdown()Shut down the client and release resources.toString()Methods inherited from class org.springframework.messaging.simp.stomp.StompClientSupportcreateSession, getDefaultHeartbeat, getMessageConverter, getReceiptTimeLimit, getTaskScheduler, isDefaultHeartbeatEnabled, processConnectHeaders, setDefaultHeartbeat, setMessageConverter, setReceiptTimeLimit, setTaskScheduler
- 
Constructor Details- 
ReactorNettyTcpStompClientpublic ReactorNettyTcpStompClient()Create an instance with host "127.0.0.1" and port 61613.
- 
ReactorNettyTcpStompClientCreate an instance with the given host and port.- Parameters:
- host- the host
- port- the port
 
- 
ReactorNettyTcpStompClientCreate an instance with a pre-configured TCP client.- Parameters:
- tcpClient- the client to use
 
 
- 
- 
Method Details- 
connectAsyncConnect and notify the givenStompSessionHandlerwhen connected on the STOMP level.- Parameters:
- handler- the handler for the STOMP session
- Returns:
- a CompletableFuture for access to the session when ready for use
- Since:
- 6.0
 
- 
connectAsyncpublic CompletableFuture<StompSession> connectAsync(@Nullable StompHeaders connectHeaders, StompSessionHandler handler) An overloaded version ofconnectAsync(StompSessionHandler)that accepts headers to use for the STOMP CONNECT frame.- Parameters:
- connectHeaders- headers to add to the CONNECT frame
- handler- the handler for the STOMP session
- Returns:
- a CompletableFuture for access to the session when ready for use
 
- 
shutdownpublic void shutdown()Shut down the client and release resources.
- 
toString
 
-