Blocks the current thread until this future is satisfied and gets its result. This method normally only useful for tests, avoid it for production code . @param timeout for how long the thread should wait for the result @return the result if the future completes successfully or an excepti
(Duration timeout)
| 523 | * the exception is unchecked, it's thrown without this wrapper. |
| 524 | */ |
| 525 | T get(Duration timeout) throws CheckedFutureException; |
| 526 | |
| 527 | /** |
| 528 | * Blocks the current thread until this future is satisfied. This method |
no outgoing calls