Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Seems to be that this method is takes in an array of threads, then determines if they have completed using InterruptedException, which seems plausible to me.

private static void waitUntilAllThreadsFinished(Thread[] threadArr) {
    for(int i=0; i<threadArr.length; i++) {
        try {
            threadArr[i].join();
        } catch (InterruptedException e) { }
        log.debug("thread ["+threadArr[i].getName()+"] have completed");
    }
}
share|improve this question
InterruptedException is thrown when the current thread operation (here it's join) has been interrupted. – kan Oct 17 '11 at 9:16

4 Answers

If you just want to know if the thread has been interrupted , the use public boolean isInterrupted() method on the thread reference. This code is trying to block the current thread on each of the thread's completion, and retrying if it got interrupted in th meanwhile.

share|improve this answer

I think getState is more appropriate

share|improve this answer

I would not force the throw and catch, since it is not free of cost. The Thread class have methods to access the current state of an instance.

share|improve this answer

This code does not just determine whether all threads have completed, but waits for all of them to complete. And it's not using InterruptedException to do this. If join() calls on finished (dead) thread, the code just continues on without exception. But it will work, I guess...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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