OnJava8-Examples/ui/LongRunningTask.java

37 lines
1.0 KiB
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// ui/LongRunningTask.java
2015-12-15 11:47:04 -08:00
// (c)2016 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
2015-06-15 17:47:35 -07:00
// A badly designed program.
import javax.swing.*;
import java.awt.*;
import java.util.concurrent.*;
import static onjava.SwingConsole.*;
2015-06-15 17:47:35 -07:00
public class LongRunningTask extends JFrame {
private JButton
b1 = new JButton("Start Long Running Task"),
b2 = new JButton("End Long Running Task");
public LongRunningTask() {
b1.addActionListener(e -> {
try {
TimeUnit.SECONDS.sleep(3);
} catch(InterruptedException ex) {
System.out.println("Task interrupted");
return;
}
System.out.println("Task completed");
});
b2.addActionListener(e -> {
// Interrupt yourself?
Thread.currentThread().interrupt();
});
setLayout(new FlowLayout());
add(b1);
add(b2);
}
public static void main(String[] args) {
run(new LongRunningTask(), 200, 150);
}
2015-09-07 11:44:36 -06:00
}