Maps the result of this future using a Transformer that returns another future and flattens the result. 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 trans
(Transformer<? super T, ? extends Future<R>> t)
| 422 | * @return a future tranformed by the Transformer. |
| 423 | */ |
| 424 | <R> Future<R> transformWith(Transformer<? super T, ? extends Future<R>> t); |
| 425 | |
| 426 | /** |
| 427 | * Waits for this and other (running in parallel) and then maps the result |
no outgoing calls