Interface ICacheDrEntryFilter<TK, TV>
Data center replication sender cache filter. Prevents data center replication of cache entries which do not pass it.
Namespace: GridGain.Core.DataCenterReplication
Assembly: GridGain.Core.dll
Syntax
public interface ICacheDrEntryFilter<in TK, in TV> : ICacheDrEntryFilter
Type Parameters
| Name | Description |
|---|---|
| TK | Type of cache entry key. |
| TV | Type of cache entry value. |
Methods
Invoke(ICacheDrEntry<TK, TV>)
Returns a value indicating whether provided cache entry satisfies this predicate.
Declaration
bool Invoke(ICacheDrEntry<TK, TV> entry)
Parameters
| Type | Name | Description |
|---|---|---|
| ICacheDrEntry<TK, TV> | entry | Cache entry. |
Returns
| Type | Description |
|---|---|
| System.Boolean | Value indicating whether provided cache entry satisfies this predicate. |