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
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for .NET