OnJava8-Examples/gui/LongRunningTask.java

34 lines
883 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: gui/LongRunningTask.java
// A badly designed program.
import javax.swing.*;
import java.awt.*;
import java.util.concurrent.*;
import static net.mindview.util.SwingConsole.*;
public class LongRunningTask extends JFrame {
private JButton
b1 = new JButton("Start Long Running Task"),
b2 = new JButton("End Long Running Task");
public LongRunningTask() {
2015-05-06 12:09:38 -07:00
b1.addActionListener(e -> {
2015-05-05 14:05:39 -07:00
try {
TimeUnit.SECONDS.sleep(3);
2015-05-06 12:09:38 -07:00
} catch(InterruptedException ex) {
2015-05-05 14:05:39 -07:00
System.out.println("Task interrupted");
return;
2015-04-20 15:36:01 -07:00
}
2015-05-05 14:05:39 -07:00
System.out.println("Task completed");
2015-04-20 15:36:01 -07:00
});
2015-05-06 12:09:38 -07:00
b2.addActionListener(e -> {
2015-05-05 14:05:39 -07:00
// Interrupt yourself?
Thread.currentThread().interrupt();
2015-04-20 15:36:01 -07:00
});
setLayout(new FlowLayout());
add(b1);
add(b2);
}
public static void main(String[] args) {
run(new LongRunningTask(), 200, 150);
}
} ///:~