A B C D E F G I L M N O Q R S T U

A

AbstractReplacementManager - class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager.
This class is a common implementation of a ReplacementManager.
AbstractReplacementManager() - Constructor for class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
accept(CacheEntry) - Method in interface org.objectweb.perseus.cache.api.CacheEntryFilter
returns true is the cachentry specified is accepted by the filter.
add(ReplaceableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
add(ReplaceableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.FIFOReplacementManager
 
add(ReplaceableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.LRUReplacementManager
 
add(ReplaceableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.MRUReplacementManager
 
addForReplacement(FixableCacheEntry) - Method in interface org.objectweb.perseus.cache.replacement.api.ReplacementManager
 
addForReplacement(FixableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
adjustForReplacement(FixableCacheEntry) - Method in interface org.objectweb.perseus.cache.replacement.api.ReplacementManager
Called whenever an object has been accessed.
adjustForReplacement(FixableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 

B

BackgroundCleaner - class org.objectweb.perseus.cache.lib.BackgroundCleaner.
This component is a thread managing the auto cleaning of a cache.
BackgroundCleaner(ReplacementManager, Logger) - Constructor for class org.objectweb.perseus.cache.lib.BackgroundCleaner
 
BasicCacheEntryFactory - class org.objectweb.perseus.cache.lib.BasicCacheEntryFactory.
This class is the default implementation of the CacheEntryFactory interface.
BasicCacheEntryFactory() - Constructor for class org.objectweb.perseus.cache.lib.BasicCacheEntryFactory
 
BasicCacheManager - class org.objectweb.perseus.cache.lib.BasicCacheManager.
This class is an implementation of a cache.
BasicCacheManager() - Constructor for class org.objectweb.perseus.cache.lib.BasicCacheManager
It builds a BasicCacheManager with an empty CacheEventListener list, an empty cache and the default max size.
BasicCacheManager.CapacityEvent - class org.objectweb.perseus.cache.lib.BasicCacheManager.CapacityEvent.
This class is a basic implementation of the CacheCapacityEvent interface.
BasicCacheManager.CapacityEvent(int, int, int) - Constructor for class org.objectweb.perseus.cache.lib.BasicCacheManager.CapacityEvent
 
BasicCacheManager.Event - class org.objectweb.perseus.cache.lib.BasicCacheManager.Event.
This class is a basic implementation of the CacheEvent interface.
BasicCacheManager.Event(int, Object, int) - Constructor for class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 
BasicCacheManager.Event(int, CacheEntry, int) - Constructor for class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 
BasicReplaceableCacheEntry - class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry.
This class is a simple implementation of the ReplaceableCacheEntry interface.
BasicReplaceableCacheEntry(Object) - Constructor for class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 
BasicReplaceableCacheEntry(Object, Object) - Constructor for class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 
backgroungCleanup(int) - Method in class org.objectweb.perseus.cache.lib.BackgroundCleaner
 
bgclogger - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
bind(Object, Object) - Method in interface org.objectweb.perseus.cache.api.CacheManager
This method allows a in-memory object (incarnation) to be placed in the cache.
bind(Object, Object) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
bindFc(String, Object) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
bindFc(String, Object) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 

C

CACHE_CAPACTITY_LISTENER_BINDING - Static variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
CACHE_ENTRY_FACTORY_BINDING - Static variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
CACHE_LISTENER_BINDING - Static variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
CacheAttributeController - interface org.objectweb.perseus.cache.api.CacheAttributeController.
This interface is management-related.
CacheCapacityEvent - interface org.objectweb.perseus.cache.api.CacheCapacityEvent.
This class represents an event produced by the cache when its size has been changed.
CacheCapacityEventListener - interface org.objectweb.perseus.cache.api.CacheCapacityEventListener.
It represents a listener of CacheCapacityEvent produced by a CacheManager when the cache is resized.
CacheEntry - interface org.objectweb.perseus.cache.api.CacheEntry.
Defines the interface for management of entries held in the cache.
CacheEntryFactory - interface org.objectweb.perseus.cache.api.CacheEntryFactory.
Interface for the CacheEntry factory (see GoF's Abstract Factory pattern.)
CacheEntryFilter - interface org.objectweb.perseus.cache.api.CacheEntryFilter.
Defines a filter of cache entry.
CacheEvent - interface org.objectweb.perseus.cache.api.CacheEvent.
Defines the interface template for CacheEvent implementation.
CacheEventListener - interface org.objectweb.perseus.cache.api.CacheEventListener.
This interface is to be implemented at the applicative level, to ensure an appropriate management of objects held in cache.
CacheException - exception org.objectweb.perseus.cache.api.CacheException.
It represents an exception occrured in a CacheManager.
CacheException() - Constructor for class org.objectweb.perseus.cache.api.CacheException
 
CacheException(String) - Constructor for class org.objectweb.perseus.cache.api.CacheException
 
CacheException(Exception) - Constructor for class org.objectweb.perseus.cache.api.CacheException
 
CacheException(String, Exception) - Constructor for class org.objectweb.perseus.cache.api.CacheException
 
CacheFullException - exception org.objectweb.perseus.cache.api.CacheFullException.
This exceptions indicates that the cache is full.
CacheFullException() - Constructor for class org.objectweb.perseus.cache.api.CacheFullException
 
CacheFullException(String) - Constructor for class org.objectweb.perseus.cache.api.CacheFullException
 
CacheFullException(Exception) - Constructor for class org.objectweb.perseus.cache.api.CacheFullException
 
CacheFullException(String, Exception) - Constructor for class org.objectweb.perseus.cache.api.CacheFullException
 
CacheManager - interface org.objectweb.perseus.cache.api.CacheManager.
This interface is the functional (applicative) view for the Caching Service.
cache - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
This field is the cache.
cacheMaxSize - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
This field is the max size of the cache.
cacheResized(CacheCapacityEvent) - Method in interface org.objectweb.perseus.cache.api.CacheCapacityEventListener
The cache has been resized.
cacheResized(CacheCapacityEvent) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
cacheSize - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager.CapacityEvent
 
cacheSize - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 
cacheThresHold - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
cacheThresHoldStr - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
ccels - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
This field is the list of CacheEventListener registered.
ce - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 
cef - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
This field is the factory of CacheEntry instances.
cels - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
This field is the list of CacheEventListener registered.
create(Object, Object) - Method in interface org.objectweb.perseus.cache.api.CacheEntryFactory
Creates a CacheEntry, given the object and its corresponding object identifier.
create(Object, Object) - Method in class org.objectweb.perseus.cache.lib.BasicCacheEntryFactory
 

D

DEFAULT_AUTO_CLEAN_SIZE - Static variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
date - Variable in class org.objectweb.perseus.cache.replacement.lib.FIFOReplacementManager
Logical clock used to assign an access time to entries
date - Variable in class org.objectweb.perseus.cache.replacement.lib.LRUReplacementManager
Logical clock used to assign an access time to entries
date - Variable in class org.objectweb.perseus.cache.replacement.lib.MRUReplacementManager
Logical clock used to assign an access time to entries

E

entries - Variable in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
Sorted list of WeakReplaceableCacheEntry entries.
entryBound(CacheEvent) - Method in interface org.objectweb.perseus.cache.api.CacheEventListener
An entry has been added in the cache.
entryUnbound(CacheEvent) - Method in interface org.objectweb.perseus.cache.api.CacheEventListener
An entry has been evicted from the cache.
eventId - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager.CapacityEvent
 
eventId - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 

F

FIFOReplacementManager - class org.objectweb.perseus.cache.replacement.lib.FIFOReplacementManager.
 
FIFOReplacementManager() - Constructor for class org.objectweb.perseus.cache.replacement.lib.FIFOReplacementManager
 
FixableCacheEntry - interface org.objectweb.perseus.cache.api.FixableCacheEntry.
It represents a cache entry which can be fix or unfix.
fix(CacheEntry) - Method in interface org.objectweb.perseus.cache.api.CacheManager
This method notifies the cache manager the intention to use the object identified by lid.
fix(CacheEntryFilter) - Method in interface org.objectweb.perseus.cache.api.CacheManager
This method notifies the cache manager the intention to use objects in the cache.
fix(CacheEntry) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
fix(CacheEntryFilter) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
fixCe() - Method in interface org.objectweb.perseus.cache.api.FixableCacheEntry
Marks this entry as used.
fixCe() - Method in class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 
forceFree(int) - Method in interface org.objectweb.perseus.cache.replacement.api.ReplacementManager
It forces the replacement manager to free CacheEntry instances from the cahce.
forceFree(int) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 

G

getAutoCleanSize() - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
 
getAutoCleanSize() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getAutoCleanThreshold() - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
 
getAutoCleanThreshold() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getBgcleaner() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getCeAge() - Method in class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 
getCeAge() - Method in interface org.objectweb.perseus.cache.replacement.api.ReplaceableCacheEntry
 
getCeFixCount() - Method in interface org.objectweb.perseus.cache.api.FixableCacheEntry
 
getCeFixCount() - Method in class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 
getCeIdentifier() - Method in interface org.objectweb.perseus.cache.api.CacheEntry
Returns the object identifier associated to the object in the cache entry.
getCeIdentifier() - Method in interface org.objectweb.perseus.cache.api.CacheEvent
 
getCeIdentifier() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 
getCeIdentifier() - Method in class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 
getCeObject() - Method in interface org.objectweb.perseus.cache.api.CacheEntry
Gives access to the object within the cache entry.
getCeObject() - Method in class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 
getCurrentEntryIdentifiers() - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
 
getCurrentEntryIdentifiers() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getCurrentMemorySize() - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
 
getCurrentMemorySize() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getCurrentSize() - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
 
getCurrentSize() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getEntry() - Method in interface org.objectweb.perseus.cache.api.CacheEvent
 
getEntry() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 
getEventId() - Method in interface org.objectweb.perseus.cache.api.CacheCapacityEvent
Returns the cache event type.
getEventId() - Method in interface org.objectweb.perseus.cache.api.CacheEvent
Returns the cache event type.
getEventId() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager.CapacityEvent
 
getEventId() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 
getFcState() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getMaxObjects() - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
This method retrieves the maximum number of objects to be held by the cache.
getMaxObjects() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getMemorySize() - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
This method returns the maximum main-memory size allocated to the cache.
getMemorySize() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
getNestedException() - Method in class org.objectweb.perseus.cache.api.CacheException
 
getOldSize() - Method in interface org.objectweb.perseus.cache.api.CacheCapacityEvent
It retrieves the old cache size before the resizing.
getOldSize() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager.CapacityEvent
 
getSize() - Method in interface org.objectweb.perseus.cache.api.CacheCapacityEvent
It retrieves the new cache size.
getSize() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager.CapacityEvent
 
getThread() - Method in class org.objectweb.perseus.cache.lib.BackgroundCleaner
 

I

InvalidCacheEntryException - exception org.objectweb.perseus.cache.api.InvalidCacheEntryException.
This exception is raised when a CacheEntry has been evicted from the cache, and fix is called.
InvalidCacheEntryException(Object) - Constructor for class org.objectweb.perseus.cache.api.InvalidCacheEntryException
 
InvalidCacheEntryException() - Constructor for class org.objectweb.perseus.cache.api.InvalidCacheEntryException
 
InvalidCacheEntryException(String) - Constructor for class org.objectweb.perseus.cache.api.InvalidCacheEntryException
 
InvalidCacheEntryException(Exception) - Constructor for class org.objectweb.perseus.cache.api.InvalidCacheEntryException
 
InvalidCacheEntryException(String, Exception) - Constructor for class org.objectweb.perseus.cache.api.InvalidCacheEntryException
 

L

LRUReplacementManager - class org.objectweb.perseus.cache.replacement.lib.LRUReplacementManager.
 
LRUReplacementManager() - Constructor for class org.objectweb.perseus.cache.replacement.lib.LRUReplacementManager
 
listFc() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
listFc() - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
logger - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
logger - Variable in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
lookup(Object) - Method in interface org.objectweb.perseus.cache.api.CacheManager
This method searches the object, identified by lid, within the cache.
lookup(Object) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
lookupFc(String) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
lookupFc(String) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 

M

MRUReplacementManager - class org.objectweb.perseus.cache.replacement.lib.MRUReplacementManager.
 
MRUReplacementManager() - Constructor for class org.objectweb.perseus.cache.replacement.lib.MRUReplacementManager
 

N

NOTIFY_BIND - Static variable in interface org.objectweb.perseus.cache.api.CacheEvent
Used to notify an add object to cache event.
NOTIFY_CACHE_RESIZE - Static variable in interface org.objectweb.perseus.cache.api.CacheCapacityEvent
Used to notify a cache resizing
NOTIFY_UNBIND - Static variable in interface org.objectweb.perseus.cache.api.CacheEvent
Used to notify an object eviction event.
NO_LIMIT - Static variable in interface org.objectweb.perseus.cache.api.CacheAttributeController
 
nestedException - Variable in class org.objectweb.perseus.cache.api.CacheException
 

O

oid - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager.Event
 
oid2wentry - Variable in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
oldCacheSize - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager.CapacityEvent
 
org.objectweb.perseus.cache.api - package org.objectweb.perseus.cache.api
 
org.objectweb.perseus.cache.lib - package org.objectweb.perseus.cache.lib
 
org.objectweb.perseus.cache.replacement.api - package org.objectweb.perseus.cache.replacement.api
 
org.objectweb.perseus.cache.replacement.lib - package org.objectweb.perseus.cache.replacement.lib
 

Q

queue - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
Queue used to register the weak references stored in the cache.
queue - Variable in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
Queue used to register the weak references stored in the entries list.

R

REPLACEMENT_MANAGER_BINDING - Static variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
ReplaceableCacheEntry - interface org.objectweb.perseus.cache.replacement.api.ReplaceableCacheEntry.
It defines an entry which contains a logical clock which permits to implement some replacement politic.
ReplacementManager - interface org.objectweb.perseus.cache.replacement.api.ReplacementManager.
It defines the commun methods associated to ReplacementManager implementations.
removeForReplacement(Object) - Method in interface org.objectweb.perseus.cache.replacement.api.ReplacementManager
This method is called by the CacheManager in order to signal that an entry has been really evicted.
removeForReplacement(Object) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
restart() - Method in class org.objectweb.perseus.cache.lib.BackgroundCleaner
 
rm - Variable in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
run() - Method in class org.objectweb.perseus.cache.lib.BackgroundCleaner
 

S

setAutoCleanSize(String) - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
Assignes the number of element which can be removed when the cache is full.
setAutoCleanSize(String) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
setAutoCleanThreshold(String) - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
Assignes the cache size value since the cache try to decrease the number of entries.
setAutoCleanThreshold(String) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
setCeAge(long) - Method in class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 
setCeAge(long) - Method in interface org.objectweb.perseus.cache.replacement.api.ReplaceableCacheEntry
It assignes a logical age to the entry.
setMaxObjects(int) - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
This method allows to set the maximum number of objects to be held by the cache manager.
setMaxObjects(int) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
setMemorySize(int) - Method in interface org.objectweb.perseus.cache.api.CacheAttributeController
This method allows to set the maximum main-memory size allocated to the cache.
setMemorySize(int) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
startFc() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
stop() - Method in class org.objectweb.perseus.cache.lib.BackgroundCleaner
 
stopFc() - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 

T

touch(CacheEntry) - Method in interface org.objectweb.perseus.cache.api.CacheManager
Called whenever an object has been accessed.
touch(CacheEntry) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
touch(ReplaceableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
touch(ReplaceableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.FIFOReplacementManager
 
touch(ReplaceableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.LRUReplacementManager
 
touch(ReplaceableCacheEntry) - Method in class org.objectweb.perseus.cache.replacement.lib.MRUReplacementManager
 

U

UNBIND_MANAGER_BINDING - Static variable in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
UnFixProtocolException - exception org.objectweb.perseus.cache.api.UnFixProtocolException.
This exception is raised when the unfix method is called whereas the cache entry is already unused.
UnFixProtocolException() - Constructor for class org.objectweb.perseus.cache.api.UnFixProtocolException
 
UnFixProtocolException(String) - Constructor for class org.objectweb.perseus.cache.api.UnFixProtocolException
 
UnFixProtocolException(Exception) - Constructor for class org.objectweb.perseus.cache.api.UnFixProtocolException
 
UnFixProtocolException(String, Exception) - Constructor for class org.objectweb.perseus.cache.api.UnFixProtocolException
 
UnbindManager - interface org.objectweb.perseus.cache.api.UnbindManager.
This interface is used by the replacement manager to evict an instance from the cache.
ub - Variable in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
unbind(Object, boolean) - Method in interface org.objectweb.perseus.cache.api.UnbindManager
Evicts an instance from the cache.
unbind(CacheEntryFilter, boolean) - Method in interface org.objectweb.perseus.cache.api.UnbindManager
Evicts the entries which are accepted by the filter.
unbind(Object, boolean) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
unbind(CacheEntryFilter, boolean) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
unbind(CacheEntryFilter, boolean) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
unbind(Object, boolean) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
It forces the replacement manager to unbind a CacheEntry instance from the cache.
unbindAll(Collection, boolean) - Method in interface org.objectweb.perseus.cache.api.UnbindManager
Evicts instances from the cache.
unbindAll(Collection, boolean) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
unbindAll(Collection, boolean) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
unbindFc(String) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
unbindFc(String) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
unbindUnfixed(boolean) - Method in interface org.objectweb.perseus.cache.api.UnbindManager
Try to evict unfixed instances.
unbindUnfixed(boolean) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
unbindUnfixed(boolean) - Method in class org.objectweb.perseus.cache.replacement.lib.AbstractReplacementManager
 
unfix(CacheEntry) - Method in interface org.objectweb.perseus.cache.api.CacheManager
This method is used to notify the cache manager that the object identified by lid is not longer to be used.
unfix(CacheEntryFilter) - Method in interface org.objectweb.perseus.cache.api.CacheManager
This method is used to notify the cache manager that objects are not longer to be used.
unfix(CacheEntry) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
unfix(CacheEntryFilter) - Method in class org.objectweb.perseus.cache.lib.BasicCacheManager
 
unfixCe() - Method in interface org.objectweb.perseus.cache.api.FixableCacheEntry
Marks this entry as used.
unfixCe() - Method in class org.objectweb.perseus.cache.lib.BasicReplaceableCacheEntry
 

A B C D E F G I L M N O Q R S T U

Copyright © 2000-2002 France Telecom S.A., INRIA, IMAG-LSR All Rights Reserved.