Click or drag to resize

IMapTKey, TValueRemoveAll Method

Removes all entries which match with the supplied predicate.

Namespace:  Hazelcast.Core
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.1
Syntax
void RemoveAll(
	IPredicate predicate
)

Parameters

predicate
Type: Hazelcast.CoreIPredicate
matching entries with this predicate will be removed from this map
Remarks
If this map has index, matching entries will be found via index search, otherwise they will be found by full-scan. Note that calling this method also removes all entries from callers near cache.
See Also