DurableOrchestrationContextBase.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) | |
CallSubOrchestratorAsync(String, String, Object) | |
CallSubOrchestratorAsync<TResult>(String, Object) | |
CallSubOrchestratorAsync<TResult>(String, String, Object) |
CallSubOrchestratorAsync(String, Object)
public virtual System.Threading.Tasks.Task CallSubOrchestratorAsync(string functionName, object input);
abstract member CallSubOrchestratorAsync : string * obj -> System.Threading.Tasks.Task
override this.CallSubOrchestratorAsync : string * obj -> System.Threading.Tasks.Task
Public Overridable Function CallSubOrchestratorAsync (functionName As String, input As Object) As Task
Parameters
- functionName
- String
- input
- Object
Returns
Applies to
CallSubOrchestratorAsync(String, String, Object)
public virtual System.Threading.Tasks.Task CallSubOrchestratorAsync(string functionName, string instanceId, object input);
abstract member CallSubOrchestratorAsync : string * string * obj -> System.Threading.Tasks.Task
override this.CallSubOrchestratorAsync : string * string * obj -> System.Threading.Tasks.Task
Public Overridable Function CallSubOrchestratorAsync (functionName As String, instanceId As String, input As Object) As Task
Parameters
- functionName
- String
- instanceId
- String
- input
- Object
Returns
Applies to
CallSubOrchestratorAsync<TResult>(String, Object)
public virtual System.Threading.Tasks.Task<TResult> CallSubOrchestratorAsync<TResult>(string functionName, object input);
abstract member CallSubOrchestratorAsync : string * obj -> System.Threading.Tasks.Task<'Result>
override this.CallSubOrchestratorAsync : string * obj -> System.Threading.Tasks.Task<'Result>
Public Overridable Function CallSubOrchestratorAsync(Of TResult) (functionName As String, input As Object) As Task(Of TResult)
Type Parameters
- TResult
Parameters
- functionName
- String
- input
- Object
Returns
Task<TResult>
Applies to
CallSubOrchestratorAsync<TResult>(String, String, Object)
public abstract 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 MustOverride Function CallSubOrchestratorAsync(Of TResult) (functionName As String, instanceId As String, input As Object) As Task(Of TResult)
Type Parameters
- TResult
Parameters
- functionName
- String
- instanceId
- String
- input
- Object
Returns
Task<TResult>
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET