DurableOrchestrationContextBase.CallActivityWithRetryAsync 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
CallActivityWithRetryAsync(String, RetryOptions, Object) | |
CallActivityWithRetryAsync<TResult>(String, RetryOptions, Object) |
CallActivityWithRetryAsync(String, RetryOptions, Object)
public virtual System.Threading.Tasks.Task CallActivityWithRetryAsync (string functionName, Microsoft.Azure.WebJobs.RetryOptions retryOptions, object input);
abstract member CallActivityWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * obj -> System.Threading.Tasks.Task
override this.CallActivityWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * obj -> System.Threading.Tasks.Task
Public Overridable Function CallActivityWithRetryAsync (functionName As String, retryOptions As RetryOptions, input As Object) As Task
Parameters
- functionName
- String
- retryOptions
- RetryOptions
- input
- Object
Returns
Applies to
CallActivityWithRetryAsync<TResult>(String, RetryOptions, Object)
public abstract System.Threading.Tasks.Task<TResult> CallActivityWithRetryAsync<TResult> (string functionName, Microsoft.Azure.WebJobs.RetryOptions retryOptions, object input);
abstract member CallActivityWithRetryAsync : string * Microsoft.Azure.WebJobs.RetryOptions * obj -> System.Threading.Tasks.Task<'Result>
Public MustOverride Function CallActivityWithRetryAsync(Of TResult) (functionName As String, retryOptions As RetryOptions, input As Object) As Task(Of TResult)
Type Parameters
- TResult
Parameters
- functionName
- String
- retryOptions
- RetryOptions
- 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