Interface: IFastForwardConfig
Properties of a FastForwardConfig.
Implemented by
Properties
duration
• Optional duration: null | IDuration
Fast-forward the current execution by this duration ahead of the current execution time; required field.
The duration yields a target time (current execution time + duration), surfaced as target_time in
TimeSkippingFastForwardInfo. Once virtual time reaches that target, the fast-forward completes, time
skipping is disabled, and no further time is skipped. Time skipping can be resumed either
by updating the TimeSkippingConfig with a new FastForwardConfig, or by clearing the FastForwardConfig
to skip through to the end of the execution.
If this duration exceeds the remaining execution timeout, time will not pass beyond the end of the execution, and the fast-forward won't have a chance to complete.
id
• Optional id: null | string
A client-supplied ID, required field, set alongside duration. It is used to poll for
fast-forward completion via PollWorkflowExecutionTimeSkipping.
The server performs no idempotency check on this ID; the client is responsible for managing it.