Uses of Interface
org.springframework.messaging.simp.stomp.StompSession
Package
Description
Generic support for simple messaging protocols (like STOMP).
WebSocket integration for Spring's messaging module.
-
Uses of StompSession in org.springframework.messaging.simp.stomp
Modifier and TypeInterfaceDescriptioninterface
AStompSession
that implementsTcpConnectionHandler
in order to send and receive messages.Modifier and TypeMethodDescriptionReactorNettyTcpStompClient.connectAsync
(@Nullable StompHeaders connectHeaders, StompSessionHandler handler) An overloaded version ofReactorNettyTcpStompClient.connectAsync(StompSessionHandler)
that accepts headers to use for the STOMP CONNECT frame.ReactorNettyTcpStompClient.connectAsync
(StompSessionHandler handler) Connect and notify the givenStompSessionHandler
when connected on the STOMP level.ConnectionHandlingStompSession.getSession()
Return a future that will complete when the session is ready for use.DefaultStompSession.getSession()
Modifier and TypeMethodDescriptionvoid
StompSessionHandler.afterConnected
(StompSession session, StompHeaders connectedHeaders) Invoked when the session is ready to use, i.e.void
StompSessionHandlerAdapter.afterConnected
(StompSession session, StompHeaders connectedHeaders) This implementation is empty.void
StompSessionHandler.handleException
(StompSession session, @Nullable StompCommand command, StompHeaders headers, byte[] payload, Throwable exception) Handle any exception arising while processing a STOMP frame such as a failure to convert the payload or an unhandled exception in the applicationStompFrameHandler
.void
StompSessionHandlerAdapter.handleException
(StompSession session, @Nullable StompCommand command, StompHeaders headers, byte[] payload, Throwable exception) This implementation is empty.void
StompSessionHandler.handleTransportError
(StompSession session, Throwable exception) Handle a low level transport error which could be an I/O error or a failure to encode or decode a STOMP message.void
StompSessionHandlerAdapter.handleTransportError
(StompSession session, Throwable exception) This implementation is empty. -
Uses of StompSession in org.springframework.web.socket.messaging
Modifier and TypeMethodDescriptionWebSocketStompClient.connectAsync
(String url, @Nullable WebSocketHttpHeaders handshakeHeaders, @Nullable StompHeaders connectHeaders, StompSessionHandler handler, @Nullable Object... uriVariables) An overloaded version ofWebSocketStompClient.connectAsync(String, StompSessionHandler, Object...)
that also acceptsWebSocketHttpHeaders
to use for the WebSocket handshake andStompHeaders
for the STOMP CONNECT frame.WebSocketStompClient.connectAsync
(String url, @Nullable WebSocketHttpHeaders handshakeHeaders, StompSessionHandler handler, @Nullable Object... uriVariables) An overloaded version ofWebSocketStompClient.connectAsync(String, StompSessionHandler, Object...)
that also acceptsWebSocketHttpHeaders
to use for the WebSocket handshake.WebSocketStompClient.connectAsync
(String url, 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.WebSocketStompClient.connectAsync
(URI url, @Nullable WebSocketHttpHeaders handshakeHeaders, @Nullable StompHeaders connectHeaders, StompSessionHandler sessionHandler) An overloaded version ofWebSocketStompClient.connectAsync(String, WebSocketHttpHeaders, StompSessionHandler, Object...)
that accepts a fully preparedURI
.