ICPMap<TKey, TValue> Interface
Namespace: Hazelcast.CP
Assembly: Hazelcast.Net.dll
CPMap is a key-value store within CP. It supports atomic operations on an entry.
CPMap is only available in enterprise cluster. This data structure is not partitioned
across members in the cluster. It lives in one of the members.
public interface ICPMap<TKey, TValue> : ICPDistributedObject, IDistributedObject, IAsyncDisposable
Inherited Members
Type Parameters
TKey | Type of key in the map. |
TValue | Type of value in the map. |
Methods
Name | Description |
---|---|
CompareAndSetAsync(TKey, TValue, TValue) | Atomically compares serialized forms of existing value with |
DeleteAsync(TKey) | Deletes the entry if |
GetAsync(TKey) | Gets value of the entry map to |
PutAsync(TKey, TValue) | Sets |
RemoveAsync(TKey) | Removes the entry if |
SetAsync(TKey, TValue) | Sets |