Interface RawExecutorCallback<I,O>
- Type Parameters:
I- type of input valueO- type of output value
public interface RawExecutorCallback<I,O>
Raw executor callback.
-
Method Summary
Modifier and TypeMethodDescriptionExecute.
-
Method Details
-
execute
Collection<O> execute(Collection<I> inputs, boolean isTrunkThread, Map<String, Object> dataMap) throws SQLExceptionExecute.- Parameters:
inputs- input valuesisTrunkThread- is execution in trunk threaddataMap- data map- Returns:
- execution results
- Throws:
SQLException- throw when execute failure
-