IStreamingWorkflowRun Interface

Definition

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.

Applies to