Apache Ignite.NET
Apache.Ignite.Core.Cache.IMutableCacheEntry< out out TK, TV > Interface Template Reference

Mutable representation of ICacheEntry<K, V> More...

Inheritance diagram for Apache.Ignite.Core.Cache.IMutableCacheEntry< out out TK, TV >:
Apache.Ignite.Core.Cache.ICacheEntry< TK, TV >

Public Member Functions

void Remove ()
 Removes the entry from the Cache. More...
 

Properties

bool Exists [get]
 Gets a value indicating whether cache entry exists in cache. More...
 
new TV Value [get, set]
 Gets, sets or replaces the value associated with the key. More...
 
- Properties inherited from Apache.Ignite.Core.Cache.ICacheEntry< TK, TV >
TK Key [get]
 Gets the key. More...
 
TV Value [get]
 Gets the value. More...
 

Detailed Description

Template Parameters
TKKey type.
TVValue type.

Member Function Documentation

void Apache.Ignite.Core.Cache.IMutableCacheEntry< out out TK, TV >.Remove ( )

Property Documentation

bool Apache.Ignite.Core.Cache.IMutableCacheEntry< out out TK, TV >.Exists
get
new TV Apache.Ignite.Core.Cache.IMutableCacheEntry< out out TK, TV >.Value
getset

If Exists is false and setter is called then a mapping is added to the cache visible once the EntryProcessor completes.

After setter invocation Exists will return true.