Sleep
If defined, at the end of the step, the flow will sleep for a number of seconds before scheduling the next job (if any, no effect if the step is the last one). Sleeping is passive and does not consume any resources.
{ if (isSleepEnabled && flowModule.sleep != undefined) { flowModule.sleep = undefined } else { flowModule.sleep = { type: 'static', value: 0 } } }} options={{ right: 'Sleep after module successful execution' }} />
Sleep for duration (seconds)
{#if flowModule.sleep && schema.properties['sleep']}
{ editor?.insertAtCursor(detail) editor?.focus() }} >
{:else}
{/if}