SAService Architect Back to designer
SAService ArchitectDocumentation
Scheduling guide temporalExecutionType: Workflow

Workflow endpoints

Durable replay-safe orchestration implemented as a generated Workflow endpoint.

When to use

Use this page while designing, implementing, operating, or troubleshooting scheduled and durable execution.

Behavior

  • Workflow code runs in the Temporal deterministic environment.
  • Durable timers and state survive worker restarts.
  • Generated runtime supplies replay-aware logging, metrics, tracing, and delay behavior.
  • Side effects must cross Activity boundaries.

Replay model

  • Avoid wall-clock APIs, random values, unmanaged threads, and direct I/O.
  • Run generated determinism and replay tooling after Workflow changes.

Use cases properties

Workflow is the coordination boundary.

PropertyTypeDescription
Orchestrationrecommended

Multi-step state machines, compensation, and waiting.

Timersdurable

Waits survive process restarts.

Side effectsActivity

Delegate externally visible operations.

Product-level example

temporalExecutionType: Workflow
taskQueue: orchestration
workflowExecutionTimeout: 86400000
maximumAttempts: 1