Click or drag to resize

LocalCacheEntry Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
A holder for a cached value.
Inheritance Hierarchy
SystemObject
  Tangosol.Net.CacheLocalCacheEntry

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class Entry : IInvocableCacheEntry, IConfigurableCacheEntry, 
	ICacheEntry

The LocalCacheEntry type exposes the following members.

Constructors
  NameDescription
Public methodLocalCacheEntry
Construct the cacheable entry that holds the cached value.
Top
Properties
  NameDescription
Public propertyCache
Parent cache.
Public propertyCreatedMillis
Determine when the cache entry was created.
Public propertyExpiryMillis
Determine when the cache entry will expire, if ever.
Protected propertyIsDiscarded
Determine if this entry has already been discarded from the cache.
Public propertyIsExpired
Determine if the cache entry has expired.
Public propertyIsPresent
Determine if this entry exists in the cache.
Public propertyKey
Gets the key corresponding to this entry.
Public propertyLastTouchMillis
Determine when the cache entry was last touched.
Public propertyPriority
Calculate a cache priority.
Public propertyTouchCount
Determine the number of times that the cache entry has been touched.
Public propertyUnits
Determine the number of cache units used by this Entry.
Public propertyValue
Gets or sets the value corresponding to this entry.
Top
Methods
  NameDescription
Public methodCalculateUnits
Calculate a cache cost for the specified object.
Protected methodDiscard
Called to inform the Entry that it is no longer used.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExtract
Extract a value out of the entry's value.
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 methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOfMSB
Determine the most significant bit of the passed integral value.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Remove this entry from the cache if it is present in the cache.
Public methodResetTouchCount
Reset the number of times that the cache entry has been touched.
Protected methodScheduleExpiry
Reschedule the cache entry expiration.
Public methodSetValue
Store the value corresponding to this entry.
Public methodToString
Render the cache entry as a string.
(Overrides ObjectToString.)
Public methodTouch
Called each time the entry is accessed or modified.
Public methodUpdate
Update the entry's value.
Top
Operators
Fields
  NameDescription
Protected fieldm_cache
Parent cache.
Protected fieldm_key
Entry's key.
Protected fieldm_value
Entry's value.
Top
See Also