Here you can find the source of newLinkedBlockingQeque(int capacity)
public static <E> LinkedBlockingQueue<E> newLinkedBlockingQeque(int capacity)
//package com.java2s; //License from project: Apache License import java.util.concurrent.LinkedBlockingQueue; public class Main { public static <E> LinkedBlockingQueue<E> newLinkedBlockingQeque(int capacity) { return new LinkedBlockingQueue<E>(capacity); }/*from w w w.j av a 2s. c o m*/ }