IGrainReferenceRuntime.InvokeMethodAsync 方法

定义

重载

InvokeMethodAsync(GrainReference, IInvokable, InvokeMethodOptions)

在提供的 grain 接口上调用指定的方法。

InvokeMethodAsync<T>(GrainReference, IInvokable, InvokeMethodOptions)

在提供的 grain 接口上调用指定的方法。

InvokeMethodAsync<T>(GrainReference, Int32, Object[], InvokeMethodOptions, SiloAddress)

对远程对象调用 方法。

InvokeMethodAsync(GrainReference, IInvokable, InvokeMethodOptions)

在提供的 grain 接口上调用指定的方法。

public System.Threading.Tasks.ValueTask InvokeMethodAsync (Orleans.Runtime.GrainReference reference, Orleans.Serialization.Invocation.IInvokable request, Orleans.CodeGeneration.InvokeMethodOptions options);
abstract member InvokeMethodAsync : Orleans.Runtime.GrainReference * Orleans.Serialization.Invocation.IInvokable * Orleans.CodeGeneration.InvokeMethodOptions -> System.Threading.Tasks.ValueTask
Public Function InvokeMethodAsync (reference As GrainReference, request As IInvokable, options As InvokeMethodOptions) As ValueTask

参数

reference
GrainReference

粒度引用。

request
IInvokable

方法说明。

options
InvokeMethodOptions

调用选项。

返回

表示操作的 。ValueTask

适用于

InvokeMethodAsync<T>(GrainReference, IInvokable, InvokeMethodOptions)

在提供的 grain 接口上调用指定的方法。

public System.Threading.Tasks.ValueTask<T> InvokeMethodAsync<T> (Orleans.Runtime.GrainReference reference, Orleans.Serialization.Invocation.IInvokable request, Orleans.CodeGeneration.InvokeMethodOptions options);
abstract member InvokeMethodAsync : Orleans.Runtime.GrainReference * Orleans.Serialization.Invocation.IInvokable * Orleans.CodeGeneration.InvokeMethodOptions -> System.Threading.Tasks.ValueTask<'T>
Public Function InvokeMethodAsync(Of T) (reference As GrainReference, request As IInvokable, options As InvokeMethodOptions) As ValueTask(Of T)

类型参数

T

方法的基础返回类型。

参数

reference
GrainReference

粒度引用。

request
IInvokable

方法说明。

options
InvokeMethodOptions

调用选项。

返回

调用的结果。

适用于

InvokeMethodAsync<T>(GrainReference, Int32, Object[], InvokeMethodOptions, SiloAddress)

Source:
IGrainReferenceRuntime.cs

对远程对象调用 方法。

public System.Threading.Tasks.Task<T> InvokeMethodAsync<T> (Orleans.Runtime.GrainReference reference, int methodId, object[] arguments, Orleans.CodeGeneration.InvokeMethodOptions options, Orleans.Runtime.SiloAddress silo);
abstract member InvokeMethodAsync : Orleans.Runtime.GrainReference * int * obj[] * Orleans.CodeGeneration.InvokeMethodOptions * Orleans.Runtime.SiloAddress -> System.Threading.Tasks.Task<'T>
Public Function InvokeMethodAsync(Of T) (reference As GrainReference, methodId As Integer, arguments As Object(), options As InvokeMethodOptions, silo As SiloAddress) As Task(Of T)

类型参数

T

结果类型

参数

reference
GrainReference

对可寻址目标的引用。

methodId
Int32

要调用的方法。

arguments
Object[]

方法有效负载。

options
InvokeMethodOptions

调用选项。

silo
SiloAddress

目标接收器。

返回

Task<T>

从远程对象返回响应。

适用于