Examples of BoundedQueue


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

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

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

     * @param maxQueueSize
     */
    public ZombieRemoteCacheService( int maxQueueSize )
    {
        this.maxQueueSize = maxQueueSize;
        queue = new BoundedQueue( maxQueueSize );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.