Jul 18, 2014
Advanced Asynchronous Continuations in camunda BPM
Asynchronous continuations are a a very powerful process engine feature. Up until now you could use asynchronous continuations in two ways: Before an activity. Asynchronous process instantiation using the async start event. (Added in 7.0). With camunda BPM 7.2.0-alpha3, Asynchronous continuations become even more powerful: You can now place an asynchronous continuation AFTER an activity. (HOT!) Asynchronous continuations are now supported on more BPMN 2.0 constructs, such as the Parallel Gateway. Why Asynchronous Continuations? Asynchronous continuations are break-points in the process execution. They are used as transaction boundaries and allow another thread than the currently active thread to continue execution. From a use case perspective Async is used for placing a safe-point before an activity such that…
By Daniel Meyer