Enum Class ScenarioStep.MODEEXECUTION

java.lang.Object
java.lang.Enum<ScenarioStep.MODEEXECUTION>
org.camunda.automator.definition.ScenarioStep.MODEEXECUTION
All Implemented Interfaces:
Serializable, Comparable<ScenarioStep.MODEEXECUTION>, Constable
Enclosing class:
ScenarioStep

public static enum ScenarioStep.MODEEXECUTION extends Enum<ScenarioStep.MODEEXECUTION>
MODE EXECUTION CLASSICAL, WAIT: the worker wait the waitingTime time THREAD, ASYNCHRONOUS: the worker release the method, wait asynchronously the waiting time and send back the answer THREADTOKEN, ASYNCHRONOUSLIMITED: same as THREAD, but use the maxClient information to not accept more than this number In ASYNCHRONOUS, the method can potentially having millions of works in parallel (it accept works, but because it finish the method, then Zeebe Client will accept more works. So, with a waiting time of 1 mn, it may have a lot of works in progress in the client. This mode limit the number of current execution on the worker. it redeem immediately the method, but when we reach this limitation, it froze the worker, waiting for a slot.