FIFOAlgorithm.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.cache.eviction; import org.jboss.logging.Logger; /** * First-in-first-out algorithm used to evict old nodes. * * @author Morten Kvistgaard 2004-10 */ public class FIFOAlgorithm extends LRUAlgorithm { public FIFOAlgorithm() { super(); log_ = Logger.getLogger(FIFOAlgorithm.class); } }
FIFOAlgorithm.java |