有谁知道我如何以编程方式重置边界
使用 Activiti 5.22.0 的 Java TaskListener 的 Timer Time Cicle 和/或 Time Duration?
有谁知道我如何以编程方式重置边界
使用 Activiti 5.22.0 的 Java TaskListener 的 Timer Time Cicle 和/或 Time Duration?
Can you please try this?
processInstanceId => process Instance ID
jobs = processEngine.getManagementService().createTimerJobQuery().processInstanceId(processInstanceId).list();
TimerJobEntity tJobEntity = (TimerJobEntity) job;
tJobEntity.setDuedate(date);
where date is new date that we want to set.