Interface CommandInterceptor
-
- All Known Implementing Classes:
AbstractCommandInterceptor,CommandContextInterceptor,CrDbRetryInterceptor,DefaultCommandInvoker,JtaRetryInterceptor,JtaTransactionInterceptor,LogInterceptor,RetryInterceptor,TransactionContextInterceptor
public interface CommandInterceptor- Author:
- Tom Baeyens
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> Texecute(CommandConfig config, Command<T> command, CommandExecutor commandExecutor)CommandInterceptorgetNext()voidsetNext(CommandInterceptor next)
-
-
-
Method Detail
-
execute
<T> T execute(CommandConfig config, Command<T> command, CommandExecutor commandExecutor)
-
getNext
CommandInterceptor getNext()
-
setNext
void setNext(CommandInterceptor next)
-
-