Uses of Interface
org.springframework.messaging.MessageHandler
Packages that use MessageHandler
Package
Description
Support for working with messaging APIs and protocols.
Common infrastructure for invoking message handler methods.
Support classes for handling messages from simple messaging protocols
 (like STOMP).
Provides a "simple" message broker implementation along with an abstract base
 class and other supporting types such as a registry for subscriptions.
Configuration support for WebSocket messaging using higher level messaging protocols.
Generic support for simple messaging protocols (like STOMP).
Support for handling messages to "user" destinations (i.e.
Provides implementations of 
Message along with
 a MessageBuilder and MessageHeaderAccessor for building and working with messages and
 message headers, as well as various MessageChannel
 implementations and channel interceptor support.WebSocket integration for Spring's messaging module.
- 
Uses of MessageHandler in org.springframework.messagingMethods in org.springframework.messaging with parameters of type MessageHandlerModifier and TypeMethodDescriptionbooleanSubscribableChannel.subscribe(MessageHandler handler) Register a message handler.booleanSubscribableChannel.unsubscribe(MessageHandler handler) Un-register a message handler.
- 
Uses of MessageHandler in org.springframework.messaging.handler.invocationClasses in org.springframework.messaging.handler.invocation that implement MessageHandlerModifier and TypeClassDescriptionclassAbstract base class for HandlerMethod-based message handling.
- 
Uses of MessageHandler in org.springframework.messaging.simp.annotation.supportClasses in org.springframework.messaging.simp.annotation.support that implement MessageHandlerModifier and TypeClassDescriptionclassA handler for messages delegating to@MessageMappingand@SubscribeMappingannotated methods.
- 
Uses of MessageHandler in org.springframework.messaging.simp.brokerClasses in org.springframework.messaging.simp.broker that implement MessageHandlerModifier and TypeClassDescriptionclassAbstract base class for aMessageHandlerthat broker messages to registered subscribers.classA "simple" message broker that recognizes the message types defined inSimpMessageType, keeps track of subscriptions with the help of aSubscriptionRegistryand sends messages to subscribers.
- 
Uses of MessageHandler in org.springframework.messaging.simp.configMethods in org.springframework.messaging.simp.config that return MessageHandlerModifier and TypeMethodDescriptionAbstractMessageBrokerConfiguration.userRegistryMessageHandler(AbstractSubscribableChannel clientInboundChannel, AbstractSubscribableChannel clientOutboundChannel, SimpUserRegistry userRegistry, SimpMessagingTemplate brokerMessagingTemplate, TaskScheduler messageBrokerTaskScheduler) Methods in org.springframework.messaging.simp.config with parameters of type MessageHandlerModifier and TypeMethodDescriptionAbstractMessageBrokerConfiguration.stompBrokerRelayMessageHandler(AbstractSubscribableChannel clientInboundChannel, AbstractSubscribableChannel clientOutboundChannel, AbstractSubscribableChannel brokerChannel, UserDestinationMessageHandler userDestinationMessageHandler, MessageHandler userRegistryMessageHandler, UserDestinationResolver userDestinationResolver) 
- 
Uses of MessageHandler in org.springframework.messaging.simp.stompClasses in org.springframework.messaging.simp.stomp that implement MessageHandlerModifier and TypeClassDescriptionclassAMessageHandlerthat handles messages by forwarding them to a STOMP broker.Methods in org.springframework.messaging.simp.stomp that return types with arguments of type MessageHandlerModifier and TypeMethodDescriptionStompBrokerRelayMessageHandler.getSystemSubscriptions()Return the configured map with subscriptions on the "system" connection.Method parameters in org.springframework.messaging.simp.stomp with type arguments of type MessageHandlerModifier and TypeMethodDescriptionvoidStompBrokerRelayMessageHandler.setSystemSubscriptions(Map<String, MessageHandler> subscriptions) Configure one more destinations to subscribe to on the shared "system" connection along with MessageHandler's to handle received messages.
- 
Uses of MessageHandler in org.springframework.messaging.simp.userClasses in org.springframework.messaging.simp.user that implement MessageHandlerModifier and TypeClassDescriptionclassMessageHandlerwith support for "user" destinations.classMessageHandlerthat handles user registry broadcasts from other application servers and periodically broadcasts the content of the local user registry.
- 
Uses of MessageHandler in org.springframework.messaging.supportMethods in org.springframework.messaging.support that return MessageHandlerModifier and TypeMethodDescriptionMessageHandlingRunnable.getMessageHandler()Return the MessageHandler that will be used to handle the message.Methods in org.springframework.messaging.support that return types with arguments of type MessageHandlerMethods in org.springframework.messaging.support with parameters of type MessageHandlerModifier and TypeMethodDescriptiondefault voidExecutorChannelInterceptor.afterMessageHandled(Message<?> message, MessageChannel channel, MessageHandler handler, Exception ex) Invoked inside theRunnablesubmitted to the Executor after calling the target MessageHandler regardless of the outcome (i.e.default Message<?>ExecutorChannelInterceptor.beforeHandle(Message<?> message, MessageChannel channel, MessageHandler handler) Invoked inside theRunnablesubmitted to the Executor just before calling the target MessageHandler to handle the message.booleanAbstractSubscribableChannel.hasSubscription(MessageHandler handler) booleanAbstractSubscribableChannel.subscribe(MessageHandler handler) booleanAbstractSubscribableChannel.unsubscribe(MessageHandler handler) 
- 
Uses of MessageHandler in org.springframework.web.socket.messagingClasses in org.springframework.web.socket.messaging that implement MessageHandlerModifier and TypeClassDescriptionclassAn implementation ofWebSocketHandlerthat delegates incoming WebSocket messages to aSubProtocolHandleralong with aMessageChannelto which the sub-protocol handler can send messages from WebSocket clients to the application.classA sub-class ofSimpAnnotationMethodMessageHandlerto provide support forControllerAdvicewith global@MessageExceptionHandlermethods.