IN - the input data type.OUT - the output data type.public abstract class FilterContextInvocation<IN,OUT> extends ContextInvocationFactory<IN,OUT> implements ContextInvocation<IN,OUT>
| Constructor and Description |
|---|
FilterContextInvocation() |
| Modifier and Type | Method and Description |
|---|---|
ContextInvocation<IN,OUT> |
newInvocation()
Creates and return a new context invocation instance.
|
void |
onAbort(RoutineException reason) |
void |
onContext(Context context)
Called right after the instantiation to specify the invocation context.
|
void |
onDestroy() |
void |
onInitialize() |
void |
onResult(ResultChannel<OUT> result) |
void |
onTerminate() |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitonInput@Nonnull public final ContextInvocation<IN,OUT> newInvocation()
ContextInvocationFactorynewInvocation in class ContextInvocationFactory<IN,OUT>public final void onAbort(@Nullable RoutineException reason)
onAbort in interface Invocation<IN,OUT>public final void onDestroy()
onDestroy in interface Invocation<IN,OUT>public final void onInitialize()
onInitialize in interface Invocation<IN,OUT>public final void onResult(@Nonnull ResultChannel<OUT> result)
onResult in interface Invocation<IN,OUT>public final void onTerminate()
onTerminate in interface Invocation<IN,OUT>public final void onContext(@Nonnull Context context)
ContextInvocationonContext in interface ContextInvocation<IN,OUT>context - the context of the invocation.