Maps the result of this future using the provided Transformer. If this future completes successfully, transformer.onValue is called. If this future completes with an exception, transformer.onException is called. @param t a Transformer that applies the transformation. @return a future tranformed
(Transformer<? super T, ? extends R> t)
| 411 | * @return a future tranformed by the Transformer. |
| 412 | */ |
| 413 | <R> Future<R> transform(Transformer<? super T, ? extends R> t); |
| 414 | |
| 415 | /** |
| 416 | * Maps the result of this future using a Transformer that returns another |
no outgoing calls