Oracle® Coherence .NET API Reference Release 3.6
E15727-01

Construct an index.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 3.6.0.0 (3.6.0.0)

Syntax

C#
public SimpleMapIndex(
	IValueExtractor extractor,
	bool fOrdered,
	IComparer comparer
)

Parameters

extractor
Type: Tangosol.Util..::.IValueExtractor
The IValueExtractor object that is used to extract an indexable Object from a value stored in the indexed Dictionary. Must not be null.
fOrdered
Type: System..::.Boolean
true iff the contents of the indexed information should be ordered; false otherwise
comparer
Type: System.Collections..::.IComparer
The IComparer object which imposes an ordering on entries in the indexed map; or null if the entries' values natural ordering should be used.

See Also