Package org.infinispan.filter
Class AcceptAllKeyValueFilter
java.lang.Object
org.infinispan.filter.AcceptAllKeyValueFilter
- All Implemented Interfaces:
KeyValueFilter<Object,
Object>
A key value filter that accepts all entries found.
This filter should be used carefully as it may cause the operation to perform very slowly as all entries are accepted.
- Since:
- 7.0
- Author:
- wburns
-
Method Details
-
getInstance
-
accept
- Specified by:
accept
in interfaceKeyValueFilter<Object,
Object> - Parameters:
key
- key to testvalue
- value to use (could be null for the case of removal)metadata
- metadata- Returns:
- true if the given key is accepted by this filter.
-