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