Package org.apache.jcs.utils.struct

Examples of org.apache.jcs.utils.struct.BoundedQueue


    /**
     * Default.
     */
    public ZombieRemoteCacheService()
    {
        queue = new BoundedQueue( 0 );
    }
View Full Code Here


     * @param maxQueueSize
     */
    public ZombieRemoteCacheService( int maxQueueSize )
    {
        this.maxQueueSize = maxQueueSize;
        queue = new BoundedQueue( maxQueueSize );
    }
View Full Code Here

TOP

Related Classes of org.apache.jcs.utils.struct.BoundedQueue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.