()
| 126 | } |
| 127 | |
| 128 | @Override |
| 129 | public T get() throws InterruptedException, ExecutionException { |
| 130 | try { |
| 131 | return get(Long.MAX_VALUE, TimeUnit.MILLISECONDS); |
| 132 | } catch (TimeoutException e) { |
| 133 | // not possible |
| 134 | throw new RuntimeException(e); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | @Override |
| 139 | public T get(long timeout, TimeUnit unit) throws InterruptedException, |