GrainReference.InvokeAsync 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
InvokeAsync(IRequest) |
Invokes the provided method. |
InvokeAsync<T>(IRequest) |
Invokes the provided method. |
InvokeAsync(IRequest)
Invokes the provided method.
protected System.Threading.Tasks.ValueTask InvokeAsync (Orleans.Runtime.IRequest methodDescription);
member this.InvokeAsync : Orleans.Runtime.IRequest -> System.Threading.Tasks.ValueTask
Protected Function InvokeAsync (methodDescription As IRequest) As ValueTask
Parameters
- methodDescription
- IRequest
The method description.
Returns
A ValueTask representing the operation.
Applies to
InvokeAsync<T>(IRequest)
Invokes the provided method.
protected System.Threading.Tasks.ValueTask<T> InvokeAsync<T> (Orleans.Runtime.IRequest methodDescription);
member this.InvokeAsync : Orleans.Runtime.IRequest -> System.Threading.Tasks.ValueTask<'T>
Protected Function InvokeAsync(Of T) (methodDescription As IRequest) As ValueTask(Of T)
Type Parameters
- T
The underlying method return type.
Parameters
- methodDescription
- IRequest
The method description.
Returns
ValueTask<T>
The result of the invocation.