Maps the result of this future to another value. @param f the mapping function. @return a future transformed by the mapping function.
(Function<? super T, ? extends R> f)
| 393 | * @return a future transformed by the mapping function. |
| 394 | */ |
| 395 | <R> Future<R> map(Function<? super T, ? extends R> f); |
| 396 | |
| 397 | /** |
| 398 | * Maps the result of this future to another future and flattens the result. |
no outgoing calls