Used by deciders to get a DecisionTask from the specified decision taskList
Source:R/swf_operations.R
swf_poll_for_decision_task.RdUsed by deciders to get a DecisionTask from the specified decision taskList. A decision task may be returned for any open workflow execution that is using the specified task list. The task includes a paginated view of the history of the workflow execution. The decider should use the workflow type and the history to determine how to properly handle the task.
See https://www.paws-r-sdk.com/docs/swf_poll_for_decision_task/ for full documentation.
Usage
swf_poll_for_decision_task(
domain,
taskList,
identity = NULL,
nextPageToken = NULL,
maximumPageSize = NULL,
reverseOrder = NULL,
startAtPreviousStartedEvent = NULL
)Arguments
- domain
[required] The name of the domain containing the task lists to poll.
- taskList
[required] Specifies the task list to poll for decision tasks.
The specified string must not contain a
:(colon),/(slash),|(vertical bar), or any control characters (U+0000`-`U+001f|U+007f`-`U+009f). Also, it must not be the literal stringarn.- identity
Identity of the decider making the request, which is recorded in the DecisionTaskStarted event in the workflow history. This enables diagnostic tracing when problems arise. The form of this identity is user defined.
- nextPageToken
If
NextPageTokenis returned there are more results available. The value ofNextPageTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a400error: "Specified token has exceeded its maximum lifetime".The configured
maximumPageSizedetermines how many results can be returned in a single call.The
nextPageTokenreturned by this action cannot be used withget_workflow_execution_historyto get the next page. You must callpoll_for_decision_taskagain (with thenextPageToken) to retrieve the next page of history records. Callingpoll_for_decision_taskwith anextPageTokendoesn't return a new decision task.- maximumPageSize
The maximum number of results that are returned per call. Use
nextPageTokento obtain further pages of results.This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.
- reverseOrder
When set to
true, returns the events in reverse order. By default the results are returned in ascending order of theeventTimestampof the events.- startAtPreviousStartedEvent
When set to
true, returns the events witheventTimestampgreater than or equal toeventTimestampof the most recentDecisionTaskStartedevent. By default, this parameter is set tofalse.