Creates an empty LinkedBlockingQueue with a capacity of Integer#MAX_VALUE.
()
| 164 | |
| 165 | |
| 166 | public static <E> LinkedBlockingQueue<E> newLinkedBlockingQueue() { |
| 167 | return new LinkedBlockingQueue<E>(); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Creates an empty {@code LinkedBlockingQueue} with the given (fixed) capacity. |
no test coverage detected