Output - the output of the executionpublic interface FutureJavaDelegate<Output>
This class can be used only for service tasks.
This class does not allow to influence the control flow. It follows the default BPMN 2.0 behavior of taking every outgoing sequence flow (which has a condition that evaluates to true if there is a condition defined) If you are in need of influencing the flow in your process, use the class 'org.flowable.engine.impl.pvm.delegate.ActivityBehavior' instead.
This interface allows fine grained control on how the future should be created.
It gives access to the AsyncTaskInvoker which can delegate execution to a shared task executor.
However, it doesn't have to be used.
In case you don't need custom task executor the FlowableFutureJavaDelegate can be used.
FlowableFutureJavaDelegate,
MapBasedFlowableFutureJavaDelegate| Modifier and Type | Method and Description |
|---|---|
void |
afterExecution(DelegateExecution execution,
Output executionData)
Method invoked with the result from
execute(DelegateExecution, AsyncTaskInvoker). |
CompletableFuture<Output> |
execute(DelegateExecution execution,
AsyncTaskInvoker taskInvoker)
Perform the execution of the delegate, potentially on another thread.
|
CompletableFuture<Output> execute(DelegateExecution execution, AsyncTaskInvoker taskInvoker)
afterExecution(DelegateExecution, Object) in order to store
the data on the execution on the same thread as the caller of this method.
IMPORTANT: the execution should only be used to read data before creating the future.
The execution should not be used in the task that will be executed on a new thread.
The AsyncTaskInvoker is in order to schedule an execution on a different thread.
However, it is also possible to use a different scheduler, or return a future not created by the given taskInvoker.
execution - the execution that can be used to extract datataskInvoker - the task invoker that can be used to execute expensive operation on another threadvoid afterExecution(DelegateExecution execution, Output executionData)
execute(DelegateExecution, AsyncTaskInvoker).
This should be used to set data on the DelegateExecution.
This is on the same thread as execute(DelegateExecution, AsyncTaskInvoker) and participates in the process transaction.execution - the execution to which data can be setexecutionData - the execution dataCopyright © 2020 Flowable. All rights reserved.