I'm using the code bellow in a desktop swing application, and I don't have much expertise with threads, because I'm a casual web programmer and deal with swing isn't my candy...
I want to know if have better approach to control my 3 tasks and I need running them in parallel one for thread in my app.
SwingUtilities.invokeLater(new Runnable() {
public void run() {
task 1
}
});
Runnable r;
r = new Runnable() {
public void run() {
task 2
}
};
EventQueue.invokeLater(r);
Thread worker = new Thread() {
public void run() {
task 3
}
};
worker.start();
Thanks!