Example usage for java.util Queue interface-usage

List of usage examples for java.util Queue interface-usage

Introduction

In this page you can find the example usage for java.util Queue interface-usage.

Usage

From source file CircularQueue.java

/**
 * A circular queue from mina
 * 
 * @author dennis
 * 
 * @param <E>

From source file com.erudika.para.queue.AWSQueue.java

/**
 * An implementation of the {@link Queue} interface using the AWS Simple Queue Service.
 * @author Alex Bogdanovski [alex@erudika.com]
 */
@Singleton
public class AWSQueue implements Queue {

From source file BoundedPriorityQueue.java

/**
 * A <code>BoundedPriorityQueue</code> implements a priority queue
 * with an upper bound on the number of elements.  If the queue is not
 * full, added elements are always added.  If the queue is full and
 * the added element is greater than the smallest element in the
 * queue, the smallest element is removed and the new element is

From source file net.javacoding.queue.DiskQueue.java

/**
 * Queue which stores all its objects to disk using object
 * serialization, on top of a DiskBackedByteQueue.
 *
 * The serialization state is reset after each enqueue().
 * Care should be taken not to enqueue() items which will

From source file org.apache.mina.util.CircularQueue.java

    /**
     * A unbounded circular queue based on array.
     * 
     * @author The Apache MINA Project (dev@mina.apache.org)
     * @version $Rev: 762170 $, $Date: 2009-04-06 00:01:18 +0200 (Mon, 06 Apr 2009) $
     */