I am having a class which extends Thread.
I will start the thread at some point.
After some time I need to check if that thread is already started or not?
So that I can start the thread at that particular point.
My thread class will be,
public class BasicChatListener extends Thread{
public void run(){
}
}
I need the know the particular thread of a BasicChatListener
class is running or not ?
Because I have multiple threads are already running in my application.
How our stack members will help me.