List of usage examples for java.util.concurrent ArrayBlockingQueue remove
public boolean remove(Object o)
From source file:Main.java
public static void main(String[] argv) throws Exception { int capacity = 10; ArrayBlockingQueue<Integer> queue = new ArrayBlockingQueue<Integer>(capacity); for (int i = 0; i < 10; i++) { queue.add(i);/*w w w . j ava2 s. c om*/ } System.out.println(queue.remove(0)); System.out.println(queue); }