Partager via


FaultInjectionGrainStorage.WriteStateAsync Méthode

Définition

Surcharges

WriteStateAsync(String, GrainReference, IGrainState)

Erreurs si l’exception est fournie, sinon, appelle via le fournisseur de stockage décoré.

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

Erreurs si l’exception est fournie, sinon, appelle via le fournisseur de stockage décoré.

WriteStateAsync(String, GrainReference, IGrainState)

Source:
FaultInjectionStorageProvider.cs

Erreurs si l’exception est fournie, sinon, appelle via le fournisseur de stockage décoré.

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

Paramètres

grainType
String

Type de ce grain [nom de classe complet]

grainReference
GrainReference

Objet de référence de grain pour ce grain.

grainState
IGrainState

Objet de données d’état à écrire pour ce grain.

Retours

Promesse d’achèvement pour l’opération d’écriture sur le grain spécifié.

Implémente

S’applique à

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

Erreurs si l’exception est fournie, sinon, appelle via le fournisseur de stockage décoré.

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

Paramètres de type

T

Paramètres

grainType
String
grainId
GrainId
grainState
IGrainState<T>

Retours

Promesse d’achèvement pour l’opération d’écriture sur le grain spécifié.

Implémente

S’applique à