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.
Is there a way to know which Active Entity thread(s) is/are being affected by
Share
There is no way to know from the thread that makes the call to
notify()which threads are woken up.Also, there is no way to know from the woken up thread which thread woke them up.
It’s just the way it is.