Delaying transitions
Transitions can be delayed for a particular amount of time or even wait for a certain date. This can be configured
on the Wait
property of a transition. The syntax for its value is duration|date:<expression>
. duration
is in
seconds while date
can be a GloopDate
or a timestamp. <expression>
can be a Gloovy
expression and can use any transition inputs.
Examples:
duration:5
- waits5
seconds before invoking the transition.date:1735660800000
- waits forJanuary 1, 2025
.date:${myDate}
- waits formyDate
, a transition input of typeGloopDate
.