Interface ICacheEntry<TK, TV>
Cache entry interface.
Namespace: Apache.Ignite.Core.Cache
Assembly: Apache.Ignite.Core.dll
Syntax
public interface ICacheEntry<out TK, out TV>
Type Parameters
Name | Description |
---|---|
TK | Key type. |
TV | Value type. |
Properties
Key
Gets the key.
Declaration
TK Key { get; }
Property Value
Type | Description |
---|---|
TK |
Value
Gets the value.
Declaration
TV Value { get; }
Property Value
Type | Description |
---|---|
TV |