-
public interface IOperationExecutorAn operation executor is an implementing class that is capable of executing on an Operation. When an Operation is enqueued via IOperationRepo.enqueue it will at some point be executed. The implementation for IOperationRepo will find the best IOperationExecutor and call IOperationExecutor.execute to execute a group of operations in batch.
-
-
Method Summary
Modifier and Type Method Description abstract ExecutionResponseexecute(List<Operation> operations)Execute the provided operations. abstract List<String>getOperations()The list of operations that this executor can handle execution. -
-
Method Detail
-
execute
abstract ExecutionResponse execute(List<Operation> operations)
Execute the provided operations.
- Parameters:
operations- The operations to execute.
-
getOperations
abstract List<String> getOperations()
The list of operations that this executor can handle execution.
-
-
-
-