2016-12-21 11:06:49 -08:00
|
|
|
// concurrent/CompletedMachina.java
|
2021-01-31 15:42:31 -07:00
|
|
|
// (c)2021 MindView LLC: see Copyright.txt
|
2016-12-21 11:06: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.*;
|
|
|
|
|
|
|
|
public class CompletedMachina {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
CompletableFuture<Machina> cf =
|
2017-01-02 14:22:25 -08:00
|
|
|
CompletableFuture.completedFuture(
|
|
|
|
new Machina(0));
|
2016-12-21 11:06:49 -08:00
|
|
|
try {
|
|
|
|
Machina m = cf.get(); // Doesn't block
|
|
|
|
} catch(InterruptedException |
|
|
|
|
ExecutionException e) {
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|