all i want block of code wait for another thread to die where this thread not event thread
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
From what I've been able to understand, it looks like you want a block of code to be executed after some thread dies, but you don't want Thread.join() to block the current thread? Then execute the whole thing in a yet another thread:
This will execute the code after someThread dies, but won't suspend the current thread. |
|||
|
|
|
I believe this is what
|
|||
|
|
|
|||||||||
|