Class EvictingQueue<E>

  • All Implemented Interfaces:
    Serializable, Iterable<E>, Collection<E>, Queue<E>

    @Beta
    @GwtCompatible
    public final class EvictingQueue<E>
    extends ForwardingQueue<E>
    implements Serializable
    A non-blocking queue which automatically evicts elements from the head of the queue when attempting to add new elements onto the queue and it is full. This queue orders elements FIFO (first-in-first-out). This data structure is logically equivalent to a circular buffer (i.e., cyclic buffer or ring buffer).

    An evicting queue must be configured with a maximum size. Each time an element is added to a full queue, the queue automatically removes its head element. This is different from conventional bounded queues, which either block or reject new elements when full.

    This class is not thread-safe, and does not accept null elements.

    Since:
    15.0
    Author:
    Kurt Alfred Kluever
    See Also:
    Serialized Form
    • Method Detail

      • create

        public static <E> EvictingQueue<E> create​(int maxSize)
        Creates and returns a new evicting queue that will hold up to maxSize elements.

        When maxSize is zero, elements will be evicted immediately after being added to the queue.

      • remainingCapacity

        public int remainingCapacity()
        Returns the number of additional elements that this queue can accept without evicting; zero if the queue is currently full.
        Since:
        16.0
      • delegate

        protected Queue<Edelegate()
        Description copied from class: ForwardingObject
        Returns the backing delegate instance that methods are forwarded to. Abstract subclasses generally override this method with an abstract method that has a more specific return type, such as ForwardingSet.delegate(). Concrete subclasses override this method to supply the instance being decorated.
        Specified by:
        delegate in class ForwardingQueue<E>
      • offer

        @CanIgnoreReturnValue
        public boolean offer​(E e)
        Adds the given element to this queue. If the queue is currently full, the element at the head of the queue is evicted to make room.
        Specified by:
        offer in interface Queue<E>
        Overrides:
        offer in class ForwardingQueue<E>
        Parameters:
        e - the element to add
        Returns:
        true always
      • add

        @CanIgnoreReturnValue
        public boolean add​(E e)
        Adds the given element to this queue. If the queue is currently full, the element at the head of the queue is evicted to make room.
        Specified by:
        add in interface Collection<E>
        Specified by:
        add in interface Queue<E>
        Overrides:
        add in class ForwardingCollection<E>
        Parameters:
        e - element whose presence in this collection is to be ensured
        Returns:
        true always
      • addAll

        @CanIgnoreReturnValue
        public boolean addAll​(Collection<? extends E> collection)
        Description copied from interface: java.util.Collection
        Adds all of the elements in the specified collection to this collection (optional operation). The behavior of this operation is undefined if the specified collection is modified while the operation is in progress. (This implies that the behavior of this call is undefined if the specified collection is this collection, and this collection is nonempty.)
        Specified by:
        addAll in interface Collection<E>
        Overrides:
        addAll in class ForwardingCollection<E>
        Parameters:
        collection - collection containing elements to be added to this collection
        Returns:
        true if this collection changed as a result of the call
        See Also:
        Collection.add(Object)
      • toArray

        public Object[] toArray()
        Description copied from interface: java.util.Collection
        Returns an array containing all of the elements in this collection. If this collection makes any guarantees as to what order its elements are returned by its iterator, this method must return the elements in the same order. The returned array's runtime component type is Object.

        The returned array will be "safe" in that no references to it are maintained by this collection. (In other words, this method must allocate a new array even if this collection is backed by an array). The caller is thus free to modify the returned array.

        Specified by:
        toArray in interface Collection<E>
        Overrides:
        toArray in class ForwardingCollection<E>
        Returns:
        an array, whose runtime component type is Object, containing all of the elements in this collection