TaskOrchestrator<TInput,TOutput>.RunAsync Method
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.
Override to implement task orchestrator logic.
public abstract System.Threading.Tasks.Task<TOutput> RunAsync (Microsoft.DurableTask.TaskOrchestrationContext context, TInput input);
abstract member RunAsync : Microsoft.DurableTask.TaskOrchestrationContext * 'Input -> System.Threading.Tasks.Task<'Output>
Public MustOverride Function RunAsync (context As TaskOrchestrationContext, input As TInput) As Task(Of TOutput)
Parameters
- context
- TaskOrchestrationContext
The task orchestrator's context.
- input
- TInput
The deserialized orchestration input.
Returns
Task<TOutput>
The output of the orchestration as a task.