IGrainStorage.ReadStateAsync Method

Definition

Overloads

ReadStateAsync(String, GrainReference, IGrainState)

Read data function for this storage instance.

ReadStateAsync<T>(String, GrainId, IGrainState<T>)

Read data function for this storage instance.

ReadStateAsync(String, GrainReference, IGrainState)

Source:
IGrainStorage.cs

Read data function for this storage instance.

public System.Threading.Tasks.Task ReadStateAsync (string grainType, Orleans.Runtime.GrainReference grainReference, Orleans.IGrainState grainState);
abstract member ReadStateAsync : string * Orleans.Runtime.GrainReference * Orleans.IGrainState -> System.Threading.Tasks.Task
Public Function ReadStateAsync (grainType As String, grainReference As GrainReference, grainState As IGrainState) As Task

Parameters

grainType
String

Type of this grain [fully qualified class name]

grainReference
GrainReference

Grain reference object for this grain.

grainState
IGrainState

State data object to be populated for this grain.

Returns

Completion promise for the Read operation on the specified grain.

Applies to

ReadStateAsync<T>(String, GrainId, IGrainState<T>)

Read data function for this storage instance.

public System.Threading.Tasks.Task ReadStateAsync<T> (string stateName, Orleans.Runtime.GrainId grainId, Orleans.IGrainState<T> grainState);
abstract member ReadStateAsync : string * Orleans.Runtime.GrainId * Orleans.IGrainState<'T> -> System.Threading.Tasks.Task
Public Function ReadStateAsync(Of T) (stateName As String, grainId As GrainId, grainState As IGrainState(Of T)) As Task

Type Parameters

T

The grain state type.

Parameters

stateName
String

Name of the state for this grain

grainId
GrainId

Grain ID

grainState
IGrainState<T>

State data object to be populated for this grain.

Returns

Completion promise for the Read operation on the specified grain.

Applies to