Interface CommandHandlerInterceptorHandlingMember<T>
- Type Parameters:
T- the type of entity to which the message handler will delegate tha actual interception
- All Superinterfaces:
MessageHandlingMember<T>,MessageInterceptingMember<T>
@Deprecated
public interface CommandHandlerInterceptorHandlingMember<T>
extends MessageInterceptingMember<T>
Deprecated.
Interface specifying a message handler capable of intercepting a command.
- Since:
- 3.3
- Author:
- Milan Savic
-
Method Summary
Modifier and TypeMethodDescriptionbooleanDeprecated.Indicates whether interceptor chain (containing a command handler) should be invoked automatically or command handler interceptor will invoke it manually.Methods inherited from interface org.axonframework.messaging.annotation.MessageHandlingMember
annotationAttributes, attribute, canHandle, canHandleMessageType, canHandleType, declaringClass, handle, hasAnnotation, payloadType, signature, unwrapMethods inherited from interface org.axonframework.messaging.annotation.MessageInterceptingMember
priority
-
Method Details
-
shouldInvokeInterceptorChain
boolean shouldInvokeInterceptorChain()Deprecated.Indicates whether interceptor chain (containing a command handler) should be invoked automatically or command handler interceptor will invoke it manually.- Returns:
trueif interceptor chain should be invoked automatically
-
MessageInterceptingMember