Timer

Node Action:

The Timer node action that waits for a specific time.

Parameters:

se_type

Timer

se_type = Timer

se_delay

This is the amount of milliseconds to wait.

Example:

Timer Example: Notifies the user that the timer is starting, runs a 10‑second timer, then notifies the user when the timer finishes.

digraph workflow {

entry[
  se_type0 = DesignToolTrigger,
se_deferUntilOnline0 = false,
se_displayName0 = "Timer Example"
se_iconService0 = ""
se_iconUrl0 = ""
se_requiresConnection0 = false,
se_visibilityCondition0 = "(dynamicStateMachineContext, msLogger) => {
  return true;
}",

]

WaitThenMessage[
  se_type0 = NotifyUser,
  se_message0 = "Timer started"
  se_notificationType0 = "Information"
  se_showToast0 = true,

se_type1 = Timer,
se_delay1 = 10000,


se_type2 = NotifyUser,
se_message2 = "Timer completed"
se_notificationType2 = "Completed"
se_showToast2 = true,

]

entry->WaitThenMessage->exit
}
Feedback
QR Code is a registered trademark of DENSO WAVE INCORPORATED in Japan and other countries.