Camunda allows to configure list of retry intervals (separated by commas)
<process-engine name="default">
...
<properties>
...
<property name="failedJobRetryTimeCycle">PT10M,PT17M,PT20M</property>
</properties>
</process-engine>
I am trying is have custom repeat intervals. Does it similarly allow list of duration for time cycles for timer boundary event? I tried following
<bpmn2:timerEventDefinition id="TimerEventDefinition_194jfm9">
<bpmn2:timeCycle xsi:type="bpmn2:tFormalExpression">PT5S,PT10S,PT20S</bpmn2:timeCycle>
</bpmn2:timerEventDefinition>
but does not work.
Is there any workaround?