Home | History | Annotate | Download | only in collect

Lines Matching refs:timeout

65   public boolean offerFirst(E e, long timeout, TimeUnit unit) throws InterruptedException {
66 return delegate().offerFirst(e, timeout, unit);
70 public boolean offerLast(E e, long timeout, TimeUnit unit) throws InterruptedException {
71 return delegate().offerLast(e, timeout, unit);
85 public E pollFirst(long timeout, TimeUnit unit) throws InterruptedException {
86 return delegate().pollFirst(timeout, unit);
90 public E pollLast(long timeout, TimeUnit unit) throws InterruptedException {
91 return delegate().pollLast(timeout, unit);
100 public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException {
101 return delegate().offer(e, timeout, unit);
110 public E poll(long timeout, TimeUnit unit) throws InterruptedException {
111 return delegate().poll(timeout, unit);