MemoryGrainStorage.WriteStateAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
WriteStateAsync(String, GrainReference, IGrainState) |
Fonction de données d’état d’écriture pour ce fournisseur de stockage. |
WriteStateAsync<T>(String, GrainId, IGrainState<T>) |
Fonction Écrire des données pour cette instance de stockage. |
WriteStateAsync(String, GrainReference, IGrainState)
- Source:
- MemoryStorage.cs
Fonction de données d’état d’écriture pour ce fournisseur de stockage.
public virtual 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 Overridable Function WriteStateAsync (grainType As String, grainReference As GrainReference, grainState As IGrainState) As Task
Paramètres
- grainType
- String
- grainReference
- GrainReference
- grainState
- IGrainState
Retours
Implémente
S’applique à
WriteStateAsync<T>(String, GrainId, IGrainState<T>)
- Source:
- MemoryStorage.cs
- Source:
- MemoryStorage.cs
- Source:
- MemoryStorage.cs
- Source:
- MemoryStorage.cs
Fonction Écrire des données pour cette instance de stockage.
public virtual 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 Overridable Function WriteStateAsync(Of T) (grainType As String, grainId As GrainId, grainState As IGrainState(Of T)) As Task
Paramètres de type
- T
Type d’état de grain.
Paramètres
- grainType
- String
- grainId
- GrainId
Grain ID
- grainState
- IGrainState<T>
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é.