Michael Wohlfart [
http://community.jboss.org/people/mwohlf] replied to the discussion
"Recover async activities after jBPM4 restart"
To view the discussion, visit:
http://community.jboss.org/message/554339#554339
--------------------------------------------------------------
Hi Georgy,
my understanding is that async executions are picked up by the job executor, so the
following might work and "restart" the excution for an async execution which
was "lost".
ManagementService managementService = processEngine.getManagementService();
Job job = managementService.createJobQuery().processInstanceId(id).uniqueResult();
managementService.executeJob(job.getId());
...it's just a guess
--------------------------------------------------------------
Reply to this message by going to Community
[
http://community.jboss.org/message/554339#554339]
Start a new discussion in jBPM at Community
[
http://community.jboss.org/choose-container!input.jspa?contentType=1&...]