Class BulkStateStoreItem<TValue>
- Assembly
- GroupeIsa.Neos.ClusterCommunication.dll
Represents a state object used for bulk delete state operation.
public class BulkStateStoreItem<TValue> : BulkStateStoreItem
Type Parameters
TValueThe data type of the item to write.
- Inheritance
-
BulkStateStoreItem<TValue>
- Inherited Members
Constructors
BulkStateStoreItem(string, TValue, string, StateStoreConsistency, StateStoreConcurrency)
Initializes a new instance of the BulkStateStoreItem<TValue> class.
public BulkStateStoreItem(string key, TValue value, string etag, StateStoreConsistency stateStoreConsistency = StateStoreConsistency.Strong, StateStoreConcurrency stateStoreConcurrency = StateStoreConcurrency.LastWrite)
Parameters
keystringThe state key.
valueTValueThe state value.
etagstringThe entity tag to control concurrency in firt write wins mode.
stateStoreConsistencyStateStoreConsistencyThe consistency mode.
stateStoreConcurrencyStateStoreConcurrencyThe concurrency mode.
Properties
Value
Gets the state value.
public TValue Value { get; }
Property Value
- TValue