Interface SubProtocolErrorHandler<P>
- Type Parameters:
 P- the message payload type
- All Known Implementing Classes:
 StompSubProtocolErrorHandler
public interface SubProtocolErrorHandler<P>
A contract for handling sub-protocol errors sent to clients.
- Since:
 - 4.2
 - Author:
 - Rossen Stoyanchev
 
- 
Method Summary
Modifier and TypeMethodDescriptionhandleClientMessageProcessingError(Message<P> clientMessage, Throwable ex) Handle errors thrown while processing client messages providing an opportunity to prepare the error message or to prevent one from being sent.handleErrorMessageToClient(Message<P> errorMessage) Handle errors sent from the server side to clients, e.g. 
- 
Method Details
- 
handleClientMessageProcessingError
@Nullable Message<P> handleClientMessageProcessingError(@Nullable Message<P> clientMessage, Throwable ex) Handle errors thrown while processing client messages providing an opportunity to prepare the error message or to prevent one from being sent.Note that the STOMP protocol requires a server to close the connection after sending an ERROR frame. To prevent an ERROR frame from being sent, a handler could return
nulland send a notification message through the broker instead, e.g. via a user destination.- Parameters:
 clientMessage- the client message related to the error, possiblynullif error occurred while parsing a WebSocket messageex- the cause for the error, nevernull- Returns:
 - the error message to send to the client, or 
nullin which case no message will be sent. 
 - 
handleErrorMessageToClient
Handle errors sent from the server side to clients, e.g. errors from the"broke relay"because connectivity failed or the external broker sent an error message, etc.- Parameters:
 errorMessage- the error message, nevernull- Returns:
 - the error message to send to the client, or 
nullin which case no message will be sent. 
 
 -