Package org.springframework.messaging
Interface ReactiveMessageHandler
- All Known Implementing Classes:
- AbstractMethodMessageHandler,- MessageMappingMessageHandler,- RSocketMessageHandler
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Reactive contract for handling a 
Message.- Since:
- 5.2
- Author:
- Rossen Stoyanchev
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>handleMessage(Message<?> message) Handle the given message.
- 
Method Details- 
handleMessageHandle the given message.- Parameters:
- message- the message to be handled
- Returns:
- a completion Monofor the result of the message handling
 
 
-