IDurableOrchestrationContext.CallSubOrchestratorAsync 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.
Overloads
CallSubOrchestratorAsync(String, Object) |
Schedules an orchestrator function named |
CallSubOrchestratorAsync(String, String, Object) |
Schedules an orchestrator function named |
CallSubOrchestratorAsync<TResult>(String, Object) |
Schedules an orchestrator function named |
CallSubOrchestratorAsync<TResult>(String, String, Object) |
Schedules an orchestration function named |
CallSubOrchestratorAsync(String, Object)
Schedules an orchestrator function named functionName
for execution.
public System.Threading.Tasks.Task CallSubOrchestratorAsync (string functionName, object input);
abstract member CallSubOrchestratorAsync : string * obj -> System.Threading.Tasks.Task
Public Function CallSubOrchestratorAsync (functionName As String, input As Object) As Task
Parameters
- functionName
- String
The name of the orchestrator function to call.
- input
- Object
The JSON-serializeable input to pass to the orchestrator function.
Returns
A durable task that completes when the called orchestrator function completes or fails.
Exceptions
The specified function does not exist, is disabled, or is not an orchestrator function.
The current thread is different than the thread which started the orchestrator execution.
The sub-orchestrator function failed with an unhandled exception.
Applies to
CallSubOrchestratorAsync(String, String, Object)
Schedules an orchestrator function named functionName
for execution.
public System.Threading.Tasks.Task CallSubOrchestratorAsync (string functionName, string instanceId, object input);
abstract member CallSubOrchestratorAsync : string * string * obj -> System.Threading.Tasks.Task
Public Function CallSubOrchestratorAsync (functionName As String, instanceId As String, input As Object) As Task
Parameters
- functionName
- String
The name of the orchestrator function to call.
- instanceId
- String
A unique ID to use for the sub-orchestration instance.
- input
- Object
The JSON-serializeable input to pass to the orchestrator function.
Returns
A durable task that completes when the called orchestrator function completes or fails.
Exceptions
The specified function does not exist, is disabled, or is not an orchestrator function.
The current thread is different than the thread which started the orchestrator execution.
The activity function failed with an unhandled exception.
Applies to
CallSubOrchestratorAsync<TResult>(String, Object)
Schedules an orchestrator function named functionName
for execution.
public System.Threading.Tasks.Task<TResult> CallSubOrchestratorAsync<TResult> (string functionName, object input);
abstract member CallSubOrchestratorAsync : string * obj -> System.Threading.Tasks.Task<'Result>
Public Function CallSubOrchestratorAsync(Of TResult) (functionName As String, input As Object) As Task(Of TResult)
Type Parameters
- TResult
The return type of the scheduled orchestrator function.
Parameters
- functionName
- String
The name of the orchestrator function to call.
- input
- Object
The JSON-serializeable input to pass to the orchestrator function.
Returns
A durable task that completes when the called orchestrator function completes or fails.
Exceptions
The specified function does not exist, is disabled, or is not an orchestrator function.
The current thread is different than the thread which started the orchestrator execution.
The sub-orchestrator function failed with an unhandled exception.
Applies to
CallSubOrchestratorAsync<TResult>(String, String, Object)
Schedules an orchestration function named functionName
for execution.
public System.Threading.Tasks.Task<TResult> CallSubOrchestratorAsync<TResult> (string functionName, string instanceId, object input);
abstract member CallSubOrchestratorAsync : string * string * obj -> System.Threading.Tasks.Task<'Result>
Public Function CallSubOrchestratorAsync(Of TResult) (functionName As String, instanceId As String, input As Object) As Task(Of TResult)
Type Parameters
- TResult
The return type of the scheduled orchestrator function.
Parameters
- functionName
- String
The name of the orchestrator function to call.
- instanceId
- String
A unique ID to use for the sub-orchestration instance.
- input
- Object
The JSON-serializeable input to pass to the orchestrator function.
Returns
A durable task that completes when the called orchestrator function completes or fails.
Exceptions
The specified function does not exist, is disabled, or is not an orchestrator function.
The current thread is different than the thread which started the orchestrator execution.
The activity function failed with an unhandled exception.
Applies to
Azure SDK for .NET