You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WorkflowRunStateChangeSync detail type is identical to the WorkflowRunStateChange detail type but with the TaskToken attribute.
Using a 'waitForCallBack' process, an AWS Step Function will hang until a SendTaskSuccess or SendTaskFailure message is sent with the task context's TaskToken.
Developers can place these events in their state machines to 'pause' the flow before continuing once the workflow has completed.
For example, the following bsshFastqCopy waits for the OraCompression to complete, prior to then pushing its own event saying that the bsshFastqCopy command has completed.
Part 1 - Listen to all WorkflowRunStateChangeSync events and launch event (without the TaskToken), this event will be relayed by the workflowmanager
Part 2 - Listen to all workflow run state change events where the status is in a terminal state
The text was updated successfully, but these errors were encountered:
Summary
WorkflowRunStateChangeSync detail type is identical to the WorkflowRunStateChange detail type but with the
TaskToken
attribute.Using a 'waitForCallBack' process, an AWS Step Function will hang until a SendTaskSuccess or SendTaskFailure message is sent with the task context's TaskToken.
Developers can place these events in their state machines to 'pause' the flow before continuing once the workflow has completed.
For example, the following bsshFastqCopy waits for the OraCompression to complete, prior to then pushing its own event saying that the bsshFastqCopy command has completed.
Part 1 - Listen to all WorkflowRunStateChangeSync events and launch event (without the TaskToken), this event will be relayed by the workflowmanager
Part 2 - Listen to all workflow run state change events where the status is in a terminal state
The text was updated successfully, but these errors were encountered: