Compartir a través de


ITaskOrchestrator Interface

Definition

Common interface for task orchestrator implementations.

public interface ITaskOrchestrator
type ITaskOrchestrator = interface
Public Interface ITaskOrchestrator
Derived

Remarks

Users should not implement task orchestrators using this interface, directly. Instead, TaskOrchestrator<TInput,TOutput> should be used to implement orchestrators.

Properties

InputType

Gets the type of the input parameter that this orchestrator accepts.

OutputType

Gets the type of the return value that this orchestrator produces.

Methods

RunAsync(TaskOrchestrationContext, Object)

Invokes the task orchestrator with the specified context and input.

Applies to