Executes the Consumer if this future completes successfully. @param c the Consumer to be executed. @return a future that completes with the result of this after c is executed, if applicable.
(Consumer<? super T> c)
| 462 | * executed, if applicable. |
| 463 | */ |
| 464 | Future<T> onSuccess(Consumer<? super T> c); |
| 465 | |
| 466 | /** |
| 467 | * Executes the Consumer if this future completes with an exception. |
no outgoing calls