LimitedQueue¶
-
public class
LimitedQueue
<ElementType> implements BlockingQueue<ElementType>¶ A limited capacity BlockingQueue which overrides add in order to remove the oldest element when the size limit is reached.
- Author
jwienke
- Parameters
<ElementType> – contained element type
Constructors¶
Methods¶
addAll¶
-
public boolean
addAll
(Collection<? extends ElementType> c)¶
containsAll¶
-
public boolean
containsAll
(Collection<?> c)¶
drainTo¶
-
public int
drainTo
(Collection<? super ElementType> c)¶
drainTo¶
-
public int
drainTo
(Collection<? super ElementType> c, int maxElements)¶
getQueue¶
-
protected BlockingQueue<ElementType>
getQueue
()¶ Returns the underlying queue.
- Returns
queue instance
removeAll¶
-
public boolean
removeAll
(Collection<?> c)¶
retainAll¶
-
public boolean
retainAll
(Collection<?> c)¶