TData - 処理対象データ型TResult - 処理結果データ型public class AsyncHandlerListInvoker<TData,TResult> extends java.lang.Object implements HandlerListInvoker<TData,java.util.concurrent.Future<TResult>>
HandlerListInvokerの実装クラス。| Constructor and Description |
|---|
AsyncHandlerListInvoker()
AsyncHandlerListInvokerを生成する。 |
| Modifier and Type | Method and Description |
|---|---|
protected java.util.concurrent.Callable<TResult> |
createCallable(HandlerListInvoker<TData,TResult> handlerListInvoker,
TData input,
ExecutionContext context)
ハンドラリストを起動する
Callableインスタンスを生成する。
ハンドラリストの起動方法を変更したい場合や、起動前後に処理を追加したい場合、
本メソッドをオーバーライドしてよい。 |
invokeHandlerList@Published(tag="architect") public AsyncHandlerListInvoker()
AsyncHandlerListInvokerを生成する。@Published(tag="architect") protected java.util.concurrent.Callable<TResult> createCallable(HandlerListInvoker<TData,TResult> handlerListInvoker, TData input, ExecutionContext context)
Callableインスタンスを生成する。
ハンドラリストの起動方法を変更したい場合や、起動前後に処理を追加したい場合、
本メソッドをオーバーライドしてよい。handlerListInvoker - HandlerListInvokerinput - 入力データcontext - ExecutionContextCallableインスタンス