Compartir vía


StatePersistence Enum

  • java.lang.Object
    • java.lang.Enum<StatePersistence>
      • microsoft.servicefabric.actors.runtime.StatePersistence

public enum StatePersistence

Indicates how actor state is stored for an actor service.

Fields

None

No state is stored for actor

Persisted

Actor state is persisted to local disk using a persistent state provider.

Volatile

Actor state is kept in-memory only using a volatile state provider.

Applies to