Searched refs:checkedGet (Results 1 – 6 of 6) sorted by relevance
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | ForwardingCheckedFuture.java | 45 public V checkedGet() throws X { in checkedGet() method in ForwardingCheckedFuture 46 return delegate().checkedGet(); in checkedGet() 50 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X { in checkedGet() method in ForwardingCheckedFuture 51 return delegate().checkedGet(timeout, unit); in checkedGet()
|
D | CheckedFuture.java | 63 V checkedGet() throws X; in checkedGet() method 75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X; in checkedGet() method
|
D | AbstractCheckedFuture.java | 76 public V checkedGet() throws X { in checkedGet() method in AbstractCheckedFuture 105 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X { in checkedGet() method in AbstractCheckedFuture
|
D | Futures.java | 169 public V checkedGet() { in checkedGet() method in Futures.ImmediateSuccessfulCheckedFuture 174 public V checkedGet(long timeout, TimeUnit unit) { in checkedGet() method in Futures.ImmediateSuccessfulCheckedFuture 229 public V checkedGet() throws X { in checkedGet() method in Futures.ImmediateFailedCheckedFuture 234 public V checkedGet(long timeout, TimeUnit unit) throws X { in checkedGet() method in Futures.ImmediateFailedCheckedFuture
|
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/ |
D | AbstractCheckedFutureTest.java | 84 future.checkedGet(); in testCheckedGetThrowsApplicationExceptionOnCancellation() 112 future.checkedGet(); in testCheckedGetThrowsApplicationExceptionOnInterruption() 148 future.checkedGet(); in testCheckedGetThrowsApplicationExceptionOnError()
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | FuturesTest.java | 168 assertSame(DATA1, future.checkedGet(0L, TimeUnit.MILLISECONDS)); in testImmediateCheckedFuture() 179 assertSame(DATA1, future1.checkedGet(0L, TimeUnit.MILLISECONDS)); in testMultipleImmediateCheckedFutures() 181 assertSame(DATA2, future2.checkedGet(0L, TimeUnit.MILLISECONDS)); in testMultipleImmediateCheckedFutures() 198 future.checkedGet(0L, TimeUnit.MILLISECONDS); in testImmediateFailedCheckedFuture() 1824 checked.checkedGet(); 1831 checked.checkedGet(5, TimeUnit.SECONDS); 1865 checked.checkedGet(); 1874 checked.checkedGet(5, TimeUnit.SECONDS); 1900 checked.checkedGet(); 1907 checked.checkedGet(5, TimeUnit.SECONDS); [all …]
|