vote up 1 vote down star

How do you determine if a thread is running?

flag

5 Answers

vote up 7 vote down

Thread.isAlive()

link|flag
vote up 3 vote down

You can use this method:

boolean isAlive()

It returns true if the thread is still alive and false if the Thread is dead. This is not static. You need a reference to the object of the Thread class.

One more tip: If you're checking it's status to make the main thread wait while the new thread is still running, you may use join() method. It is more handy.

link|flag
vote up 2 vote down

I think you can use GetState(); It can return the exact state of a thread.

link|flag
vote up 0 vote down

Check the thread status by calling Thread.isAlive

link|flag
vote up 0 vote down

Have your thread notify some other thread when it’s finished. This way you’ll always know exactly what’s going on.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.