Modifier and Type | Method and Description |
---|---|
Future<T1> |
yield()
A shortcut for
yield(Function.identity()) . |
<R> Future<R> |
yield(Function<? super T1,? extends R> f)
Yields a result for elements of the cross product of the underlying Future.
|
public <R> Future<R> yield(Function<? super T1,? extends R> f)
R
- type of the resulting Future
elementsf
- a function that maps an element of the cross product to a resultFuture
of mapped resultsCopyright © 2021. All Rights Reserved.