IMapTKey, TValueKeySet Method (IPredicate)Hazelcast .Net Client Class Library
Queries the map based on the specified predicate and returns the keys of matching entries.

Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.8.0.1
Syntax

ISet<TKey> KeySet(
	IPredicate predicate
)

Parameters

predicate
Type: Hazelcast.CoreIPredicate
query criteria

Return Value

Type: ISetTKey
result key ISetT of the query
Remarks

Queries the map based on the specified predicate and returns the keys of 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

Reference