Maps the result of this future to another future and flattens the result. @param f the mapping function that returns another future instance. @return a mapped and flattened future with the transformed result.
(Function<? super T, ? extends Future<R>> f)
| 401 | * @return a mapped and flattened future with the transformed result. |
| 402 | */ |
| 403 | <R> Future<R> flatMap(Function<? super T, ? extends Future<R>> f); |
| 404 | |
| 405 | /** |
| 406 | * Maps the result of this future using the provided Transformer. If this |
no outgoing calls