| IMapTKey, TValueEntrySet Method (IPredicate) |
Queries the map based on the specified predicate and
returns the matching entries.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
Syntax ISet<KeyValuePair<TKey, TValue>> EntrySet(
IPredicate predicate
)
Function EntrySet (
predicate As IPredicate
) As ISet(Of KeyValuePair(Of TKey, TValue))
ISet<KeyValuePair<TKey, TValue>>^ EntrySet(
IPredicate^ predicate
)
abstract EntrySet :
predicate : IPredicate -> ISet<KeyValuePair<'TKey, 'TValue>>
Parameters
- predicate
- Type: Hazelcast.CoreIPredicate
query criteria
Return Value
Type:
ISetKeyValuePairTKey,
TValueresult entry
ISetT of the query
Remarks
Queries the map based on the specified predicate and
returns the matching entries.
Specified predicate runs on all members in parallel.
Warning:
The set is
NOT backed by the map,
so changes to the map are
NOT reflected in the set, and vice-versa.
See Also