There can be many reason, say a third party version jar is changed which is been used. So in this case user can change jar file and then wanted to start from this point on-words,
Or say there is connection failure or network failure happened.
I think what you’re looking for would be a transaction boundary between elements to ensure the rollback doesn’t go past a certain point. For that you need to use the asynchronous before/after functionality
Thanks, I will give it a try with rollback.
Another question came up in mind, Say I have a flow 1–>2–>3–>4–>5
Is there is a way to start flow from any point in between? Can I start from step3, or Step4 as and when wanted.
async we use mostly when we access share resources. OR when we want to check repeatedly for sometime for certain resources till available. Like Retry Counter with Time Limit. I am littler starter in Camunda, hopefully will pick things up soon.