Interface MessageHandlerInterceptorMemberChain<T>
- Type Parameters:
T- The type that declares the handlers in this chain
- All Known Implementing Classes:
ChainedMessageHandlerInterceptorMember,NoMoreInterceptors
public interface MessageHandlerInterceptorMemberChain<T>
Interface to interact with a MessageHandlingMember instance through a chain of interceptors, which were used to build
up this chain. Unlike regular handlers, interceptors have the ability to act on messages on their way to the regular
handler, and have the ability to block these messages.
- Since:
- 4.4.0
- Author:
- Allard Buijze
-
Method Summary
Modifier and TypeMethodDescriptionhandle(Message message, ProcessingContext context, T target, MessageHandlingMember<? super T> handler)
-
Method Details
-
handle
MessageStream<?> handle(Message message, ProcessingContext context, T target, MessageHandlingMember<? super T> handler)
-