- All Superinterfaces:
- Mirror
Information about a monitor owned by a thread.
- Since:
- 1.6
- 
Method SummaryModifier and TypeMethodDescriptionmonitor()Returns theObjectReferenceobject for the monitor.intReturns the stack depth at which this monitor was acquired by the owning thread.thread()Returns aThreadReferenceobject for the thread that owns the monitor.Methods declared in interface com.sun.jdi.MirrortoString, virtualMachine
- 
Method Details- 
monitorObjectReference monitor()Returns theObjectReferenceobject for the monitor.- Returns:
- the ObjectReferenceobject for the monitor.
- Throws:
- InvalidStackFrameException- if the associated stack frame has become invalid. Once the frame's thread is resumed, the stack frame is no longer valid.
- Since:
- 1.6
- See Also:
 
- 
stackDepthint stackDepth()Returns the stack depth at which this monitor was acquired by the owning thread. Returns -1 if the implementation cannot determine the stack depth (e.g., for monitors acquired by JNI MonitorEnter).- Returns:
- the stack depth at which this monitor was acquired by the owning thread.
- Throws:
- InvalidStackFrameException- if the associated stack frame has become invalid. Once the frame's thread is resumed, the stack frame is no longer valid.
- See Also:
 
- 
threadThreadReference thread()Returns aThreadReferenceobject for the thread that owns the monitor.- Returns:
- a ThreadReferenceobject for the thread that owns the monitor.
- Throws:
- InvalidStackFrameException- if the associated stack frame has become invalid. Once the frame's thread is resumed, the stack frame is no longer valid.
- See Also:
 
 
-