21 lines
538 B
Java
21 lines
538 B
Java
// onjava/TimedAbort.java
|
|
// (c)2017 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
// Terminate a program after n seconds
|
|
package onjava;
|
|
import java.util.concurrent.*;
|
|
|
|
public class TimedAbort {
|
|
public TimedAbort(int n, String msg) {
|
|
CompletableFuture.runAsync(() -> {
|
|
new Nap(1000 * n);
|
|
System.out.println(msg);
|
|
System.exit(0);
|
|
});
|
|
}
|
|
public TimedAbort(int n) {
|
|
this(n, "TimedAbort " + n);
|
|
}
|
|
}
|