You need to use threading to solve this. Threads are like multitasking.
Thread t = new Thread(){
public void run(){
//do job
}
}
t.start(); //starts the thread
To end the thread, you'll need some kind of stopping condition
public boolean run = false;
Thread t = new Thread(){
public void run(){
while(run)
//do job
}
}
public void startThread(){
t.start(); //starts the thread
}
See also:
Thread.stop() will kill the thread, but this is very bad. For example, suppose that you're writing into an array
for(int i = 0; i < myAr.length; i++)
myAr[i] = getStuff(i);
And at i = 5, Thread.stop() is called. Now your program thinks that everything is good, when in fact, it's not!
To kill the thread, set run to false. run is a boolean I showed in the second example. The other option is to create a subclass of Thread (not just in line overriding methods) and create a method halt() (stop is final). halt() will set run to false. run will still be a global boolean.
Here's an example of that.
public class MyThread extends Thread {
public boolean run = true;
public void run(){
run = true;
while(run)
doStuff();
}
public void halt(){
run = false;
}
}
You need to be careful that two threads aren't modifying the same object at once, it would be like turning an object into a random number generator :/
Now that you have been given the power of threads, use it wisely, for good not for evil! Go forth and be thread-safe.
checkMails()takes any significant time then your UI will hang again. – David Heffernan Jul 21 '11 at 14:05