Hi,
I have a couple of service tasks in my flow which are declared as asynchronous and triggerable.
flowable:async=“true”
flowable:triggerable=“true”
In case the execution-method in the delegate java service class throws an exception it may leave the workflow stuck.
These are not business exceptions but can be technical issues like bugs or unexpected failure to connect to external microservices.
After the cause of the failure is determined, I would like to have to option to re-execute the java service class “execute”-method.
But how can I do this ? Either directly from java or using the rest-API ?