cancel
Showing results for 
Search instead for 
Did you mean: 

is it possible to reset the timer on timer boundary event?

jianxin
Champ in-the-making
Champ in-the-making
I have a user task attached a timer boundary event, but don't want a different path of the flow when that triggered, instead just want the timer to be reset after sending out an escalation estimation, is that possible? or alternative way to satisfy this requirement?

Scenario would be timer set 2 hours on the user task, if 2 hours the task not taken, then fire email and reset the timer, and another 2 hours if the task still not taken, then fire the email and reset the timer again.
2 REPLIES 2

vasile_dirla
Star Contributor
Star Contributor
Hi, this sounds to me like a repeatable timer:

<code>
<timerEventDefinition>
    <timeCycle>R3/PT2H</timeCycle>
</timerEventDefinition>
</code>

this will trigger 3 times with a rate of 2 hours (every 2 hours).

jianxin
Champ in-the-making
Champ in-the-making
thanks, lot more need to read…