OnJava8-Examples/concurrent/CompletedMachina.java

20 lines
583 B
Java
Raw Normal View History

2016-12-21 11:06:49 -08:00
// concurrent/CompletedMachina.java
2016-12-30 17:23:13 -08:00
// (c)2017 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);
}
}
}