Workflow Context
A workflow’s context is a JavaScript object provided by the serve function and is used to define your workflow endpoint. This context object offers utility methods for creating workflow steps, managing delays, and performing timeout-resistant HTTP calls.
This context object provides utility methods to create workflow steps, wait for certain periods of time or perform timeout-resistant HTTP calls.
Further, the context object provides all request headers, the incoming request payload and current workflow ID.
Context Object Properties
-
qstashClient
: QStash client used by the serve method -
workflowRunId
: Current workflow run ID -
url
: Publically accessible workflow endpoint URL -
failureUrl
: URL for workflow failure notifications. -
requestPayload
: Incoming request payload -
rawInitialPayload
: String version of the initial payload -
headers
: Request headers -
env
: Environment variables
Core Workflow Methods
context.run
Defines and executes a workflow step.
context.sleep
Pauses workflow execution for a specified duration.
Always await
a sleep
action to properly pause execution.
context.sleepUntil
Pauses workflow execution until a specific timestamp.
Always await a sleepUntil
action to properly pause execution.
context.call
Performs an HTTP call as a workflow step, allowing for longer response times.
Can take up to 15 minutes or 2 hours, depending on your QStash plans max HTTP connection timeout.
context.call attempts to parse the response body as JSON. If this is not possible, the body is returned as it is.
In TypeScript, you can declare the expected result type as follows:
By default, context.call
only retries once if its request to the given URL fails.
context.waitForEvent
Stops the workflow run until it is notified externally to continue.
There is also a timeout setting which makes the workflow continue if it’s not notified within the time frame.
A workflow run waiting for event can be notified in two ways:
context.notify
: Notify step explained belowclient.notify
: Notify method of the Workflow Client.
context.notify
Notifies workflows waiting for an event with some payload.
notifyResponse
is a list of NotifyResponse
objects:
More details about the Waiter
object:
Error handling and retries
- context.run and context.call automatically retry on failures.
- Default: 3 retries with exponential backoff.
- Future releases will allow configuration of retry behavior.
Limitations and Plan-Specific-Features
- Sleep durations and HTTP timeouts vary based on your QStash plan.
- See your plan’s “Max Delay” and “Max HTTP Connection Timeout” for specific limits.
Was this page helpful?