492493494495496497498
* Completes this future as if its {@code run()} method threw * an {@code AbortedByTimeoutException}, unless this future * has already completed. */ void timeoutExpired() { setException(new AbortedByTimeoutException()); }
494495496497498499500