IGrainReferenceRuntime.InvokeMethodAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
InvokeMethodAsync(GrainReference, IInvokable, InvokeMethodOptions)
在提供的粒紋介面上叫用指定的方法。
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)
在提供的粒紋介面上叫用指定的方法。
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
叫用選項。
傳回
ValueTask<T>
叫用的結果。
適用於
InvokeMethodAsync<T>(GrainReference, Int32, Object[], InvokeMethodOptions, SiloAddress)
在遠端物件上叫用 方法。
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>
從遠端物件傳迴響應。