Delays the result of this future. It method doesn't take in consideration how long this future takes to be completed. It assumes the state of this future after delay, being it completed or not. @param delay for how long the future must be delayed @param timeUnit the time unit for delay @para
(final Duration delay, final ScheduledExecutorService scheduler)
| 556 | * @return a future that assumes the state of this future after delay. |
| 557 | */ |
| 558 | Future<T> delayed(final Duration delay, final ScheduledExecutorService scheduler); |
| 559 | |
| 560 | /** |
| 561 | * Proxies the result of this future, successful or not, to a Promise. |
no outgoing calls