Interface: AsyncWorkflowListIterable
client.AsyncWorkflowListIterable
An iterable list of WorkflowExecution, as returned by WorkflowClient.list.
Hierarchy
-
AsyncIterable
<WorkflowExecutionInfo
>↳
AsyncWorkflowListIterable
Properties
intoHistories
• intoHistories: (intoHistoriesOptions?
: IntoHistoriesOptions
) => AsyncIterable
<HistoryAndWorkflowId
>
Return an iterable of histories corresponding to this iterable's WorkflowExecutions. Workflow histories will be fetched concurrently.
Useful in batch replaying
Type declaration
▸ (intoHistoriesOptions?
): AsyncIterable
<HistoryAndWorkflowId
>
Return an iterable of histories corresponding to this iterable's WorkflowExecutions. Workflow histories will be fetched concurrently.
Useful in batch replaying
Parameters
Name | Type |
---|---|
intoHistoriesOptions? | IntoHistoriesOptions |
Returns
AsyncIterable
<HistoryAndWorkflowId
>
Methods
[asyncIterator]
▸ [asyncIterator](): AsyncIterator
<WorkflowExecutionInfo
, any
, undefined
>
Returns
AsyncIterator
<WorkflowExecutionInfo
, any
, undefined
>
Inherited from
AsyncIterable.[asyncIterator]