2016-12-25 12:36:49 -08:00
|
|
|
// concurrent/FrostedCake.java
|
2021-01-31 15:42:31 -07:00
|
|
|
// (c)2021 MindView LLC: see Copyright.txt
|
2016-12-25 12:36:49 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
// Visit http://OnJava8.com for more book information.
|
|
|
|
import java.util.concurrent.*;
|
|
|
|
import java.util.stream.*;
|
|
|
|
import onjava.Nap;
|
|
|
|
|
2017-05-01 14:33:10 -06:00
|
|
|
final class Frosting {
|
2016-12-25 12:36:49 -08:00
|
|
|
private Frosting() {}
|
|
|
|
static CompletableFuture<Frosting> make() {
|
2017-01-22 16:48:11 -08:00
|
|
|
new Nap(0.1);
|
2016-12-25 12:36:49 -08:00
|
|
|
return CompletableFuture
|
|
|
|
.completedFuture(new Frosting());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class FrostedCake {
|
|
|
|
public FrostedCake(Baked baked, Frosting frosting) {
|
2017-01-22 16:48:11 -08:00
|
|
|
new Nap(0.1);
|
2016-12-25 12:36:49 -08:00
|
|
|
}
|
2021-01-31 15:42:31 -07:00
|
|
|
@Override public String toString() {
|
|
|
|
return "FrostedCake";
|
|
|
|
}
|
2016-12-25 12:36:49 -08:00
|
|
|
public static void main(String[] args) {
|
|
|
|
Baked.batch().forEach(baked -> baked
|
|
|
|
.thenCombineAsync(Frosting.make(),
|
|
|
|
(cake, frosting) ->
|
|
|
|
new FrostedCake(cake, frosting))
|
2017-01-02 14:22:25 -08:00
|
|
|
.thenAcceptAsync(System.out::println)
|
|
|
|
.join());
|
2016-12-25 12:36:49 -08:00
|
|
|
}
|
|
|
|
}
|