IStreamingWorkflowRun Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a workflow run that supports streaming workflow events as they occur.
public interface IStreamingWorkflowRun
type IStreamingWorkflowRun = interface
Public Interface IStreamingWorkflowRun
Remarks
This interface defines the contract for streaming workflow runs in durable execution environments. Implementations provide real-time access to workflow events.
Properties
| Name | Description |
|---|---|
| RunId |
Gets the unique identifier for the run. |
Methods
| Name | Description |
|---|---|
| SendResponseAsync<TResponse>(DurableWorkflowWaitingForInputEvent, TResponse, CancellationToken) |
Sends a response to a DurableWorkflowWaitingForInputEvent to resume the workflow. |
| WatchStreamAsync(CancellationToken) |
Asynchronously streams workflow events as they occur during workflow execution. |