public interface InterceptorChain
proceed()
or proceed(CommandMessage)
methods. Alternatively, they can block
processing by returning without calling either of these methods.Modifier and Type | Method and Description |
---|---|
Object |
proceed()
Signals the Interceptor Chain to continue processing the incoming (original) command.
|
Object |
proceed(CommandMessage<?> command)
Signals the Interceptor Chain to continue processing the given command.
|
Object proceed() throws Throwable
Throwable
- any exceptions thrown by interceptors or the command handlerObject proceed(CommandMessage<?> command) throws Throwable
command
- The command being executedThrowable
- any exceptions thrown by interceptors or the command handlerCopyright © 2010-2014. All Rights Reserved.