Uses of Interface
org.infinispan.container.entries.InternalCacheEntry

Packages that use InternalCacheEntry
org.infinispan.container   
org.infinispan.container.entries   
org.infinispan.distribution   
org.infinispan.loader   
org.infinispan.loader.bdbje   
org.infinispan.loader.bucket   
org.infinispan.loader.cluster   
org.infinispan.loader.decorators   
org.infinispan.loader.file   
org.infinispan.loader.jdbc.binary   
org.infinispan.loader.jdbc.mixed   
org.infinispan.loader.jdbc.stringbased   
org.infinispan.loader.modifications   
org.infinispan.loader.s3   
 

Uses of InternalCacheEntry in org.infinispan.container
 

Methods in org.infinispan.container that return InternalCacheEntry
 InternalCacheEntry SpinLockBasedLRUDataContainer.get(Object k)
           
 InternalCacheEntry SpinLockBasedFIFODataContainer.get(Object k)
           
 InternalCacheEntry SimpleDataContainer.get(Object k)
           
 InternalCacheEntry LRUDataContainer.get(Object k)
           
 InternalCacheEntry FIFODataContainer.get(Object k)
           
 InternalCacheEntry DataContainer.get(Object k)
          Retrieves a cached entry
 InternalCacheEntry SpinLockBasedFIFODataContainer.ValueIterator.next()
           
 InternalCacheEntry FIFODataContainer.ValueIterator.next()
           
 InternalCacheEntry SpinLockBasedFIFODataContainer.remove(Object k)
           
 InternalCacheEntry SimpleDataContainer.remove(Object k)
           
 InternalCacheEntry FIFODataContainer.remove(Object k)
           
 InternalCacheEntry DataContainer.remove(Object k)
          Removes an entry from the cache
 

Methods in org.infinispan.container that return types with arguments of type InternalCacheEntry
 Iterator<InternalCacheEntry> SpinLockBasedFIFODataContainer.iterator()
           
 Iterator<InternalCacheEntry> SimpleDataContainer.iterator()
           
 Iterator<InternalCacheEntry> FIFODataContainer.iterator()
           
 

Uses of InternalCacheEntry in org.infinispan.container.entries
 

Classes in org.infinispan.container.entries that implement InternalCacheEntry
 class AbstractInternalCacheEntry
          An abstract internal cache entry that is typically stored in the data container
 class ImmortalCacheEntry
          A cache entry that is immortal/cannot expire
 class MortalCacheEntry
          A cache entry that is mortal.
 class TransientCacheEntry
          A cache entry that is transient, i.e., it can be considered expired afer a period of not being used
 class TransientMortalCacheEntry
          A cache entry that is both transient and mortal.
 

Methods in org.infinispan.container.entries that return InternalCacheEntry
static InternalCacheEntry InternalEntryFactory.create(Object key, Object value)
           
static InternalCacheEntry InternalEntryFactory.create(Object key, Object value, long lifespan)
           
static InternalCacheEntry InternalEntryFactory.create(Object key, Object value, long lifespan, long maxIdle)
           
static InternalCacheEntry InternalEntryFactory.create(Object key, Object value, long created, long lifespan, long lastUsed, long maxIdle)
           
 InternalCacheEntry TransientMortalCacheEntry.setLifespan(long lifespan)
           
 InternalCacheEntry TransientCacheEntry.setLifespan(long lifespan)
           
 InternalCacheEntry MortalCacheEntry.setLifespan(long lifespan)
           
 InternalCacheEntry InternalCacheEntry.setLifespan(long lifespan)
          Sets the lifespan of the entry.
 InternalCacheEntry ImmortalCacheEntry.setLifespan(long lifespan)
           
 InternalCacheEntry TransientMortalCacheEntry.setMaxIdle(long maxIdle)
           
 InternalCacheEntry TransientCacheEntry.setMaxIdle(long maxIdle)
           
 InternalCacheEntry MortalCacheEntry.setMaxIdle(long maxIdle)
           
 InternalCacheEntry InternalCacheEntry.setMaxIdle(long maxIdle)
          Sets the maximum idle time of the entry.
 InternalCacheEntry ImmortalCacheEntry.setMaxIdle(long maxIdle)
           
 

Uses of InternalCacheEntry in org.infinispan.distribution
 

Methods in org.infinispan.distribution that return InternalCacheEntry
 InternalCacheEntry DistributionManagerImpl.retrieveFromRemoteSource(Object key)
           
 InternalCacheEntry DistributionManager.retrieveFromRemoteSource(Object key)
          Retrieves a cache entry from a remote source
 

Uses of InternalCacheEntry in org.infinispan.loader
 

Methods in org.infinispan.loader that return InternalCacheEntry
 InternalCacheEntry LockSupportCacheStore.load(Object key)
           
 InternalCacheEntry CacheLoader.load(Object key)
          Loads an entry mapped to by a given key.
protected abstract  InternalCacheEntry LockSupportCacheStore.loadLockSafe(Object key, String lockingKey)
           
 

Methods in org.infinispan.loader that return types with arguments of type InternalCacheEntry
 Set<InternalCacheEntry> LockSupportCacheStore.loadAll()
           
 Set<InternalCacheEntry> CacheLoader.loadAll()
          Loads all entries in the loader.
protected abstract  Set<InternalCacheEntry> LockSupportCacheStore.loadAllLockSafe()
           
 

Methods in org.infinispan.loader with parameters of type InternalCacheEntry
 void LockSupportCacheStore.store(InternalCacheEntry ed)
           
 void CacheStore.store(InternalCacheEntry entry)
          Stores an entry
protected abstract  void LockSupportCacheStore.storeLockSafe(InternalCacheEntry ed, String lockingKey)
           
 

Uses of InternalCacheEntry in org.infinispan.loader.bdbje
 

Methods in org.infinispan.loader.bdbje that return InternalCacheEntry
 InternalCacheEntry BdbjeCacheStore.load(Object key)
          Loads an entry mapped to by a given key. This implementation delegates to StoredMap.get(Object).
 

Methods in org.infinispan.loader.bdbje that return types with arguments of type InternalCacheEntry
 Set<InternalCacheEntry> BdbjeCacheStore.loadAll()
          Loads all entries in the loader. This implementation returns a Set from StoredMap.values()
 

Methods in org.infinispan.loader.bdbje with parameters of type InternalCacheEntry
 void BdbjeCacheStore.store(InternalCacheEntry ed)
          Stores an entry This implementation delegates to StoredMap.put(Object, Object)
 

Uses of InternalCacheEntry in org.infinispan.loader.bucket
 

Methods in org.infinispan.loader.bucket that return InternalCacheEntry
 InternalCacheEntry Bucket.getEntry(Object key)
           
protected  InternalCacheEntry BucketBasedCacheStore.loadLockSafe(Object key, String lockingKey)
          Loads the bucket coresponding to the given key, and lookups the key within it.
 

Methods in org.infinispan.loader.bucket that return types with arguments of type InternalCacheEntry
 Map<Object,InternalCacheEntry> Bucket.getEntries()
           
 Collection<? extends InternalCacheEntry> Bucket.getStoredEntries()
           
 

Methods in org.infinispan.loader.bucket with parameters of type InternalCacheEntry
 void Bucket.addEntry(InternalCacheEntry se)
           
protected  void BucketBasedCacheStore.storeLockSafe(InternalCacheEntry ed, String lockingKey)
          Tries to find a bucket corresponding to storedEntry's key, and updates it with the storedEntry.
 

Uses of InternalCacheEntry in org.infinispan.loader.cluster
 

Methods in org.infinispan.loader.cluster that return InternalCacheEntry
 InternalCacheEntry ClusterCacheLoader.load(Object key)
           
 

Methods in org.infinispan.loader.cluster that return types with arguments of type InternalCacheEntry
 Set<InternalCacheEntry> ClusterCacheLoader.loadAll()
           
 

Uses of InternalCacheEntry in org.infinispan.loader.decorators
 

Methods in org.infinispan.loader.decorators that return InternalCacheEntry
 InternalCacheEntry ChainingCacheStore.load(Object key)
           
 InternalCacheEntry AbstractDelegatingStore.load(Object key)
           
 

Methods in org.infinispan.loader.decorators that return types with arguments of type InternalCacheEntry
 Set<InternalCacheEntry> ChainingCacheStore.loadAll()
           
 Set<InternalCacheEntry> AbstractDelegatingStore.loadAll()
           
 

Methods in org.infinispan.loader.decorators with parameters of type InternalCacheEntry
 void SingletonStore.store(InternalCacheEntry ed)
           
 void ReadOnlyStore.store(InternalCacheEntry ed)
           
 void ChainingCacheStore.store(InternalCacheEntry ed)
           
 void AsyncStore.store(InternalCacheEntry ed)
           
 void AbstractDelegatingStore.store(InternalCacheEntry ed)
           
 

Uses of InternalCacheEntry in org.infinispan.loader.file
 

Methods in org.infinispan.loader.file that return types with arguments of type InternalCacheEntry
protected  Set<InternalCacheEntry> FileCacheStore.loadAllLockSafe()
           
 

Uses of InternalCacheEntry in org.infinispan.loader.jdbc.binary
 

Methods in org.infinispan.loader.jdbc.binary that return types with arguments of type InternalCacheEntry
 Set<InternalCacheEntry> JdbcBinaryCacheStore.loadAllLockSafe()
           
 

Uses of InternalCacheEntry in org.infinispan.loader.jdbc.mixed
 

Methods in org.infinispan.loader.jdbc.mixed that return InternalCacheEntry
 InternalCacheEntry JdbcMixedCacheStore.load(Object key)
           
 

Methods in org.infinispan.loader.jdbc.mixed that return types with arguments of type InternalCacheEntry
 Set<InternalCacheEntry> JdbcMixedCacheStore.loadAll()
           
 

Methods in org.infinispan.loader.jdbc.mixed with parameters of type InternalCacheEntry
 void JdbcMixedCacheStore.store(InternalCacheEntry ed)
           
 

Uses of InternalCacheEntry in org.infinispan.loader.jdbc.stringbased
 

Methods in org.infinispan.loader.jdbc.stringbased that return InternalCacheEntry
protected  InternalCacheEntry JdbcStringBasedCacheStore.loadLockSafe(Object key, String lockingKey)
           
 

Methods in org.infinispan.loader.jdbc.stringbased that return types with arguments of type InternalCacheEntry
protected  Set<InternalCacheEntry> JdbcStringBasedCacheStore.loadAllLockSafe()
           
 

Methods in org.infinispan.loader.jdbc.stringbased with parameters of type InternalCacheEntry
 void JdbcStringBasedCacheStore.storeLockSafe(InternalCacheEntry ed, String lockingKey)
           
 

Uses of InternalCacheEntry in org.infinispan.loader.modifications
 

Methods in org.infinispan.loader.modifications that return InternalCacheEntry
 InternalCacheEntry Store.getStoredEntry()
           
 

Constructors in org.infinispan.loader.modifications with parameters of type InternalCacheEntry
Store(InternalCacheEntry storedEntry)
           
 

Uses of InternalCacheEntry in org.infinispan.loader.s3
 

Methods in org.infinispan.loader.s3 that return types with arguments of type InternalCacheEntry
protected  Set<InternalCacheEntry> S3CacheStore.loadAllLockSafe()
           
 



Copyright © 2009 JBoss, a division of Red Hat. All Rights Reserved.