/* * Copyright (C) 2012 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkNotNull; import java.io.Serializable; import java.util.ArrayDeque; import java.util.Collection; import java.util.Queue; import com.google.common.annotations.Beta; import com.google.common.annotations.GwtIncompatible; import com.google.common.annotations.VisibleForTesting; /** * 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. * *
* 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.
*
* @author Kurt Alfred Kluever
* @since 15.0
*/
@Beta
@GwtIncompatible("java.util.ArrayDeque")
public final class EvictingQueue
* When {@code maxSize} is zero, elements will be evicted immediately after
* being added to the queue.
*/
public static