Click or drag to resize

IIndexAwareExtractor Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
IIndexAwareExtractor is an extension to the IValueExtractor interface that supports the creation and destruction of an ICacheIndex index. Instances of this interface are intended to be used with the AddIndex(IValueExtractor, Boolean, IComparer) and RemoveIndex(IValueExtractor) API to support the creation of custom indexes.

Namespace:  Tangosol.Util.Extractor
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface IIndexAwareExtractor : IValueExtractor

The IIndexAwareExtractor type exposes the following members.

Methods
  NameDescription
Public methodCreateIndex
Create an index and associate it with the corresponding extractor.

Important: it is a responsibility of this method's implementations to place the necessary <IValueExtractor, ICacheEntry> entry into the given map of indexes.

Public methodDestroyIndex
Destroy an existing index and remove it from the given dictionary of indexes.
Public methodEquals
Compare the IValueExtractor with another object to determine equality.
(Inherited from IValueExtractor.)
Public methodExtract
Extract the value from the passed object.
(Inherited from IValueExtractor.)
Public methodGetHashCode
Determine a hash value for the IValueExtractor object according to the general object.GetHashCode contract.
(Inherited from IValueExtractor.)
Public methodToString
Provide a human-readable description of this IValueExtractor object.
(Inherited from IValueExtractor.)
Top
See Also