IWorkflowClient 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.
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. |