Click or drag to resize

ConverterCollectionsConverterInvocableCache Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
A Converter InvocableCache views an underlying IInvocableCache through a set of key and value IConverters.
Inheritance Hierarchy

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
[SerializableAttribute]
public class ConverterInvocableCache : ConverterCollectionsConverterCache, 
	IInvocableCache, ICache, IDictionary, ICollection, IEnumerable

The ConverterCollectionsConverterInvocableCache type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCache
The underlying ICache.
(Inherited from ConverterCollectionsConverterCache.)
Public propertyConverterKeyDown
The IConverter used to pass keys down to the underlying dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyConverterKeyUp
The IConverter used to view the underlying dictionary's keys through.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyConverterValueDown
The IConverter used to pass values down to the underlying dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyConverterValueUp
The IConverter used to view the underlying dictionary's values through.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyCount
Gets the number of elements contained in the dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyDictionary
The underlying IDictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyEntries
Gets a collection of ICacheEntry instances within the cache.
(Inherited from ConverterCollectionsConverterCache.)
Public propertyInvocableCache
The underlying IInvocableCache.
Public propertyIsFixedSize
Gets a value indicating whether the dictionary has a fixed size.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyIsReadOnly
Gets a value indicating whether the dictionary is read-only.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyIsSynchronized
Gets a value indicating whether access to the dictionary is synchronized (thread safe).
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyItem
Gets or sets the element with the specified key.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyKeys
Gets an ICollection containing the keys of the dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertySyncRoot
Gets an object that can be used to synchronize access to the dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public propertyValues
Gets an ICollection containing the values in the dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Top
Methods
  NameDescription
Public methodAdd
Adds an element with the provided key and value to the dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public methodAggregate(ICollection, IEntryAggregator)
Perform an aggregating operation against the entries specified by the passed keys.
Public methodAggregate(IFilter, IEntryAggregator)
Perform an aggregating operation against the collection of entries that are selected by the given IFilter.
Public methodClear
Removes all elements from the dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public methodContains
Determines whether the dictionary contains an element with the specified key.
(Inherited from ConverterCollectionsConverterDictionary.)
Public methodCopyTo
Copies the elements of the collection to an array, starting at a particular index.
(Inherited from ConverterCollectionsConverterDictionary.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetAll
Get the values for all the specified keys, if they are in the cache.
(Inherited from ConverterCollectionsConverterCache.)
Public methodGetEnumerator
Returns an IDictionaryEnumerator object for the dictionary.
(Inherited from ConverterCollectionsConverterCache.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInsert(Object, Object)
Associates the specified value with the specified key in this cache.
(Inherited from ConverterCollectionsConverterCache.)
Public methodInsert(Object, Object, Int64)
Associates the specified value with the specified key in this cache.
(Inherited from ConverterCollectionsConverterCache.)
Public methodInsertAll
Copies all of the mappings from the specified dictionary to this cache (optional operation).
(Inherited from ConverterCollectionsConverterCache.)
Protected methodInstantiateCacheEnumerator
Returns an instance of ICacheEnumerator that uses IConverters to view an underlying enumerator.
(Inherited from ConverterCollectionsConverterCache.)
Protected methodInstantiateCollection
Create a Converter Collection.
(Inherited from ConverterCollectionsConverterDictionary.)
Protected methodInstantiateDictionary
Create a Converter Dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Protected methodInstantiateDictionaryEnumerator
Returns an instance of IDictionaryEnumerator that uses an IConverters to view an underlying enumerator.
(Inherited from ConverterCollectionsConverterDictionary.)
Protected methodInstantiateEntries
Create a Converter Entry collection.
(Inherited from ConverterCollectionsConverterCache.)
Public methodInvoke
Invoke the passed IEntryProcessor against the entry specified by the passed key, returning the result of the invocation.
Public methodInvokeAll(ICollection, IEntryProcessor)
Invoke the passed IEntryProcessor against the entries specified by the passed keys, returning the result of the invocation for each.
Public methodInvokeAll(IFilter, IEntryProcessor)
Invoke the passed IEntryProcessor against the set of entries that are selected by the given IFilter, returning the result of the invocation for each.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Removes the element with the specified key from the dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Public methodToString
Return a string description for this dictionary.
(Inherited from ConverterCollectionsConverterDictionary.)
Top
Fields
Extension Methods
  NameDescription
Public Extension MethodGetOrDefault
Returns the value to which the specified key is mapped, or the defaultValue if this cache contains no mapping for the key.
(Defined by InvocableCacheEx.)
Public Extension MethodInsertIfAbsent
If the specified key is not already associated with a value (or is mapped to null) associates it with the given value and returns null, else returns the current value.
(Defined by InvocableCacheEx.)
Public Extension MethodRemove
Removes the entry for the specified key only if it is currently mapped to the specified value.
(Defined by InvocableCacheEx.)
Public Extension MethodReplace(Object, Object)Overloaded.
Replaces the entry for the specified key only if it is currently mapped to some value.
(Defined by InvocableCacheEx.)
Public Extension MethodReplace(Object, Object, Object)Overloaded.
Replaces the entry for the specified key only if currently mapped to the specified value.
(Defined by InvocableCacheEx.)
Top
See Also