Interface ICacheEntryFilter<TK, TV>
Cache entry predicate.
Namespace: Apache.Ignite.Core.Cache
Assembly: Apache.Ignite.Core.dll
Syntax
public interface ICacheEntryFilter<in TK, in TV>
Type Parameters
Name | Description |
---|---|
TK | Key type. |
TV | Value type. |
Methods
Invoke(ICacheEntry<TK, TV>)
Returns a value indicating whether provided cache entry satisfies this predicate.
Declaration
bool Invoke(ICacheEntry<TK, TV> entry)
Parameters
Type | Name | Description |
---|---|---|
ICacheEntry<TK, TV> | entry | Cache entry. |
Returns
Type | Description |
---|---|
System.Boolean | Value indicating whether provided cache entry satisfies this predicate. |