Is there a way to know which Active Entity thread(s) is/are being affected by a notify() or notifyAll() which are called from inside of a Passive Entity Mutex.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
There is no way to know from the thread that makes the call to Also, there is no way to know from the woken up thread which thread woke them up. It's just the way it is. |
|||
|
|
|
If you need to know this information, you can create a data structure which records this information. However, you rarely need to know this so it doesn't do this for you automatically. |
|||
|
|