IWorkflowClient Interface

Definition

Defines a client for running and managing workflow executions.

public interface IWorkflowClient
type IWorkflowClient = interface
Public Interface IWorkflowClient

Methods

Name Description
RunAsync(Workflow, String, String, CancellationToken)

Runs a workflow with string input and returns a handle to monitor its execution.

RunAsync<TInput>(Workflow, TInput, String, CancellationToken)

Runs a workflow and returns a handle to monitor its execution.

StreamAsync(Workflow, String, String, CancellationToken)

Starts a workflow with string input and returns a streaming handle to watch events in real-time.

StreamAsync<TInput>(Workflow, TInput, String, CancellationToken)

Starts a workflow and returns a streaming handle to watch events in real-time.

Applies to