Class FutureJavaDelegateInvocation
- java.lang.Object
-
- org.flowable.engine.impl.delegate.invocation.DelegateInvocation
-
- org.flowable.engine.impl.delegate.invocation.FutureJavaDelegateInvocation
-
public class FutureJavaDelegateInvocation extends DelegateInvocation
Class handling invocations of FutureJavaDelegates- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected AsyncTaskInvokerasyncTaskInvokerprotected FutureJavaDelegate<?>delegateInstanceprotected DelegateExecutionexecution-
Fields inherited from class org.flowable.engine.impl.delegate.invocation.DelegateInvocation
invocationParameters, invocationResult
-
-
Constructor Summary
Constructors Constructor Description FutureJavaDelegateInvocation(FutureJavaDelegate<?> delegateInstance, DelegateExecution execution, AsyncTaskInvoker asyncTaskInvoker)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetTarget()returns the target of the current invocation, ie.protected voidinvoke()-
Methods inherited from class org.flowable.engine.impl.delegate.invocation.DelegateInvocation
getInvocationParameters, getInvocationResult, proceed
-
-
-
-
Field Detail
-
delegateInstance
protected final FutureJavaDelegate<?> delegateInstance
-
execution
protected final DelegateExecution execution
-
asyncTaskInvoker
protected final AsyncTaskInvoker asyncTaskInvoker
-
-
Constructor Detail
-
FutureJavaDelegateInvocation
public FutureJavaDelegateInvocation(FutureJavaDelegate<?> delegateInstance, DelegateExecution execution, AsyncTaskInvoker asyncTaskInvoker)
-
-
Method Detail
-
invoke
protected void invoke()
- Specified by:
invokein classDelegateInvocation
-
getTarget
public Object getTarget()
Description copied from class:DelegateInvocationreturns the target of the current invocation, ie. JavaDelegate, ValueExpression ...- Specified by:
getTargetin classDelegateInvocation
-
-