Removes all entries which match with the supplied predicate.
Namespace: Hazelcast.CoreAssembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.8.1
void RemoveAll(
IPredicate predicate
)
Sub RemoveAll (
predicate As IPredicate
)
void RemoveAll(
IPredicate^ predicate
)
abstract RemoveAll :
predicate : IPredicate -> unit
Parameters
- predicate
- Type: Hazelcast.CoreIPredicate
matching entries with this predicate will be removed from this map
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.
Reference