Compartilhar via


GrpcDurableTaskClient.WaitForInstanceCompletionAsync Method

Definition

Waits for an orchestration to complete and returns a OrchestrationMetadata object that contains metadata about the started instance.

public override System.Threading.Tasks.Task<Microsoft.DurableTask.Client.OrchestrationMetadata> WaitForInstanceCompletionAsync (string instanceId, bool getInputsAndOutputs = false, System.Threading.CancellationToken cancellation = default);
override this.WaitForInstanceCompletionAsync : string * bool * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.DurableTask.Client.OrchestrationMetadata>
Public Overrides Function WaitForInstanceCompletionAsync (instanceId As String, Optional getInputsAndOutputs As Boolean = false, Optional cancellation As CancellationToken = Nothing) As Task(Of OrchestrationMetadata)

Parameters

instanceId
String

The unique ID of the orchestration instance to wait for.

getInputsAndOutputs
Boolean

Specify true to fetch the orchestration instance's inputs, outputs, and custom status, or false to omit them. The default value is false to minimize the network bandwidth, serialization, and memory costs associated with fetching the instance metadata.

cancellation
CancellationToken

A CancellationToken that can be used to cancel the wait operation.

Returns

Returns a OrchestrationMetadata record that describes the orchestration instance and its execution status or null if no instance with ID instanceId is found.

Applies to