你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DurableOrchestrationContextBase.CallSubOrchestratorWithRetryAsync 方法

定义

重载

CallSubOrchestratorWithRetryAsync(String, RetryOptions, Object)
CallSubOrchestratorWithRetryAsync(String, RetryOptions, String, Object)
CallSubOrchestratorWithRetryAsync<TResult>(String, RetryOptions, Object)
CallSubOrchestratorWithRetryAsync<TResult>(String, RetryOptions, String, Object)

CallSubOrchestratorWithRetryAsync(String, RetryOptions, Object)

Source:
DurableOrchestrationContextBase.cs
public virtual System.Threading.Tasks.Task CallSubOrchestratorWithRetryAsync(string functionName, Microsoft.Azure.WebJobs.RetryOptions retryOptions, object input);
abstract member CallSubOrchestratorWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * obj -> System.Threading.Tasks.Task
override this.CallSubOrchestratorWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * obj -> System.Threading.Tasks.Task
Public Overridable Function CallSubOrchestratorWithRetryAsync (functionName As String, retryOptions As RetryOptions, input As Object) As Task

参数

functionName
String
retryOptions
RetryOptions
input
Object

返回

适用于

CallSubOrchestratorWithRetryAsync(String, RetryOptions, String, Object)

Source:
DurableOrchestrationContextBase.cs
public virtual System.Threading.Tasks.Task CallSubOrchestratorWithRetryAsync(string functionName, Microsoft.Azure.WebJobs.RetryOptions retryOptions, string instanceId, object input);
abstract member CallSubOrchestratorWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * string * obj -> System.Threading.Tasks.Task
override this.CallSubOrchestratorWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * string * obj -> System.Threading.Tasks.Task
Public Overridable Function CallSubOrchestratorWithRetryAsync (functionName As String, retryOptions As RetryOptions, instanceId As String, input As Object) As Task

参数

functionName
String
retryOptions
RetryOptions
instanceId
String
input
Object

返回

适用于

CallSubOrchestratorWithRetryAsync<TResult>(String, RetryOptions, Object)

Source:
DurableOrchestrationContextBase.cs
public virtual System.Threading.Tasks.Task<TResult> CallSubOrchestratorWithRetryAsync<TResult>(string functionName, Microsoft.Azure.WebJobs.RetryOptions retryOptions, object input);
abstract member CallSubOrchestratorWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * obj -> System.Threading.Tasks.Task<'Result>
override this.CallSubOrchestratorWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * obj -> System.Threading.Tasks.Task<'Result>
Public Overridable Function CallSubOrchestratorWithRetryAsync(Of TResult) (functionName As String, retryOptions As RetryOptions, input As Object) As Task(Of TResult)

类型参数

TResult

参数

functionName
String
retryOptions
RetryOptions
input
Object

返回

Task<TResult>

适用于

CallSubOrchestratorWithRetryAsync<TResult>(String, RetryOptions, String, Object)

Source:
DurableOrchestrationContextBase.cs
public abstract System.Threading.Tasks.Task<TResult> CallSubOrchestratorWithRetryAsync<TResult>(string functionName, Microsoft.Azure.WebJobs.RetryOptions retryOptions, string instanceId, object input);
abstract member CallSubOrchestratorWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * string * obj -> System.Threading.Tasks.Task<'Result>
Public MustOverride Function CallSubOrchestratorWithRetryAsync(Of TResult) (functionName As String, retryOptions As RetryOptions, instanceId As String, input As Object) As Task(Of TResult)

类型参数

TResult

参数

functionName
String
retryOptions
RetryOptions
instanceId
String
input
Object

返回

Task<TResult>

适用于