
hi: I use visualVM connect a multi thread Java application, thread has 4 status, namely running, sleeping, wait, Monitor. What does this Monitoring status mean? What's the difference between wait and Monitor?
|
hi: I use visualVM connect a multi thread Java application, thread has 4 status, namely running, sleeping, wait, Monitor. What does this Monitoring status mean? What's the difference between wait and Monitor? |
||||
|
|
|
These states are the same as mentioned in the
"Monitor" is the |
|||||||||
|
|
That's not a "monitoring" status... It indicates that the thread is in the |
|||
|
|
|
Monitor will mean the thread is waiting to attain a lock on an object. For example when one thread is running a synchronized method and another one tries to invoke it on the same object, it will not be able to until the first invocation of the method is finished. This is because the first thread has a monitor or lock on that object, so the second one must wait until it is released. From Oracle Threading Tutorials:
|
|||
|
|