Package org.springframework.messaging
Interface MessageHandler
- All Known Implementing Classes:
 AbstractBrokerMessageHandler,AbstractMethodMessageHandler,SimpAnnotationMethodMessageHandler,SimpleBrokerMessageHandler,StompBrokerRelayMessageHandler,SubProtocolWebSocketHandler,UserDestinationMessageHandler,UserRegistryMessageHandler,WebSocketAnnotationMethodMessageHandler
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Simple contract for handling a 
Message.- Since:
 - 4.0
 - Author:
 - Mark Fisher, Iwein Fuld
 - See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidhandleMessage(Message<?> message) Handle the given message. 
- 
Method Details
- 
handleMessage
Handle the given message.- Parameters:
 message- the message to be handled- Throws:
 MessagingException- if the handler failed to process the message
 
 -