FileDocCategorySizeDatePackage
UnBoundedSessionCache.javaAPI DocGlassfish v2 API2717Fri May 04 22:33:00 BST 2007com.sun.ejb.containers.util.cache

UnBoundedSessionCache

public class UnBoundedSessionCache extends LruSessionCache

Fields Summary
Constructors Summary
public UnBoundedSessionCache(String cacheName, com.sun.ejb.containers.StatefulSessionContainer container, int cacheIdleTime, int removalTime)

        super(cacheName, container, cacheIdleTime, removalTime);
        threshold = Integer.MAX_VALUE;
    
Methods Summary
protected booleanisThresholdReached()

        return false;
    
protected CacheItemtrimLru()

        threshold *= 2;
        return null;