Click or drag to resize

LimitFilterExtractPage Method (Object)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Extract a subset of the specified array to fit the filter's parameters (i.e. page size and page number).

Namespace:  Tangosol.Util.Filter
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public virtual Object[] ExtractPage(
	Object[] entries
)

Parameters

entries
Type: SystemObject
An original array of entries.

Return Value

Type: Object
An array of entries extracted accordingly to the filter parameters.
Remarks
If this filter has a comparator, the specified array is presumed to be sorted accordingly.

The returned array is guaranteed to iterate exactly in the same order as the original array.

See Also