AbstractExtractor Class |
Namespace: Tangosol.Util.Extractor
public abstract class AbstractExtractor : IValueExtractor, IQueryCacheComparer, IComparer
The AbstractExtractor type exposes the following members.
Name | Description | |
---|---|---|
![]() | AbstractExtractor | Initializes a new instance of the AbstractExtractor class |
Name | Description | |
---|---|---|
![]() | Compare |
Compares its two arguments for order.
|
![]() | CompareEntries |
Compare two entries.
|
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Extract |
Extract the value from the passed object.
|
![]() | ExtractFromEntry |
Extract the value from the passed Entry object. The returned
value should follow the conventions outlined in the
Extract(Object) method.
|
![]() | ExtractOriginalFromEntry |
Extract the value from the "original value" of the passed
CacheEntry object or the key (if targeted). This method's conventions are exactly the same
as the ExtractFromEntry(ICacheEntry) method.
|
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() ![]() | KEY |
Indicates that the ExtractFromEntry(ICacheEntry) operation
should use the Entry's value.
|
![]() | m_target |
Specifies which part of the entry should be used by the
ExtractFromEntry(ICacheEntry) operation. Legal values are
VALUE (default) or KEY.
|
![]() ![]() | VALUE |
Indicates that the ExtractFromEntry(ICacheEntry) operation
should use the Entry's value.
|
Starting with Coherence 3.5, when used to extract information that is coming from a ICache, subclasses have the additional ability to operate against the ICacheEntry instead of just the value. In other words, like the EntryExtractor class, this allows an extractor implementation to extract a desired value using all available information on the corresponding ICacheEntry object and is intended to be used in advanced custom scenarios, when application code needs to look at both key and value at the same time or can make some very specific assumptions regarding to the implementation details of the underlying Entry object. To maintain full backwards compatibility, the default behavior remains to extract from the Value property of the ICacheEntry.
Note: Subclasses are responsible for initialization and POF and/or Lite serialization of the m_target field.