Executes the Consumer if this future completes with an exception. @param c the Consumer to be executed. @return a future that completes with the result of this after c is executed, if applicable.
(Consumer<Throwable> c)
| 471 | * executed, if applicable. |
| 472 | */ |
| 473 | Future<T> onFailure(Consumer<Throwable> c); |
| 474 | |
| 475 | /** |
| 476 | * Executes the Responder once this future completes. If this future completes |
no outgoing calls