Dynamically set duedate timer in JBPM process definition

JBPM (3.x), which I use, does not support dynamically changing the execution date of a timer. After a process definition in JBPM, all instances of this process definition use the same timer.

Can I dynamically update the timer before entering node?

+4
source share
1 answer

Using CustomJBPMHandler we can update instance JBPM tables, but this is not recommended. Refer to the JBPM5.x API for any methods open to update a duedate timer.

Use org.jbpm.graph.def.ActionHandler to create your own TaskHandler.

+3
source

Source: https://habr.com/ru/post/1439313/


All Articles