Executes the Responder once this future completes. If this future completes successfully, responder.onValue is called. If this future completes with an exception, responder.onException is called. @param r the Responder to be executed. @return a future that completes with the result of this after
(Responder<? super T> r)
| 482 | * executed. |
| 483 | */ |
| 484 | Future<T> respond(Responder<? super T> r); |
| 485 | |
| 486 | /** |
| 487 | * If this future completes with an exception, applies the provided rescue |
no outgoing calls