ConverterCollectionsConverterNamedCacheGetValues Method (IFilter, IComparer) |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Return a collection of the values contained in this cache for
entries that satisfy the criteria expressed by the filter.
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic virtual Object[] GetValues(
IFilter filter,
IComparer comparer
)
Parameters
- filter
- Type: Tangosol.UtilIFilter
The IFilter object representing the criteria
that the entries of this cache should satisfy.
- comparer
- Type: System.CollectionsIComparer
The IComparable object which imposes an ordering on
entries in the resulting collection; or null if the
entries' values natural ordering should be used.
Return Value
Type:
Object
A collection of entries that satisfy the specified criteria.
Implements
IQueryCacheGetValues(IFilter, IComparer)
Remarks
It is guaranteed that enumerator will traverse the array in
such a way that the values come up in ascending order, sorted
by the specified comparer or according to the
natural ordering.
See Also