StatePersistence Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates how actor state is stored for an actor service.
public enum StatePersistence
type StatePersistence =
Public Enum StatePersistence
- Inheritance
-
StatePersistence
Fields
Name | Value | Description |
---|---|---|
None | 0 | No state is stored for the actor. |
Volatile | 1 | The actor state is kept in-memory only using a volatile state provider. |
Persisted | 2 | The actor state is persisted to local disk using a persistent state provider. |