(T e)
| 15 | |
| 16 | public interface BlockingQueue<T> extends Queue<T> { |
| 17 | public void put(T e) throws InterruptedException; |
| 18 | |
| 19 | public boolean offer(T e, long timeout, TimeUnit unit) throws InterruptedException; |
| 20 |
no outgoing calls
no test coverage detected