Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Returns a Converter instance of a collection that holds ICacheEntry objects for a ConverterCollections..::.ConverterCache.

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

Syntax

C#
public static ConverterCollections..::.ConverterCacheEntries GetCacheEntries(
	ICollection col,
	IConverter convKeyUp,
	IConverter convKeyDown,
	IConverter convValUp,
	IConverter convValDown
)

Parameters

col
Type: System.Collections..::.ICollection
The underlying collection of ICacheEntry objects.
convKeyUp
Type: Tangosol.Util..::.IConverter
The IConverter to view the underlying entries' keys through.
convKeyDown
Type: Tangosol.Util..::.IConverter
The IConverter to pass keys down to the underlying entries collection.
convValUp
Type: Tangosol.Util..::.IConverter
The IConverter to view the underlying entries' values through.
convValDown
Type: Tangosol.Util..::.IConverter
The IConverter to pass values down to the underlying entries collection.

Return Value

A Converter collection that views the keys and values of the underlying collection's ICacheEntry objects through the specified key and value IConverters.

See Also