Java Collection Tutorial - Java ArrayBlockingQueue .drainTo (Collection <? super E > c)








Syntax

ArrayBlockingQueue.drainTo(Collection <? super E > c) has the following syntax.

public int drainTo(Collection <? super E > c)

Example

In the following code shows how to use ArrayBlockingQueue.drainTo(Collection <? super E > c) method.

// w ww  . jav  a 2 s.  c  om
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ArrayBlockingQueue;

public class Main {
  public static void main(String[] argv) throws Exception {
    List<Integer> list = new ArrayList<Integer>();
    
    
    int capacity = 100;
    ArrayBlockingQueue<Integer> queue = new ArrayBlockingQueue<Integer>(capacity);
    queue.put(0);
    queue.put(1);
    queue.put(2);
    queue.drainTo(list);
    System.out.println(queue);
    System.out.println(list);
  }
}

The code above generates the following result.