Interface MonitorInfo

All Superinterfaces:
Mirror
public interface MonitorInfo
extends Mirror

Information about a monitor owned by a thread.

Since:
1.6

Methods

Modifier and Type Method Description
ObjectReference monitor()

Returns the ObjectReference object for the monitor.

int stackDepth()

Returns the stack depth at which this monitor was acquired by the owning thread.

ThreadReference thread()

Returns a ThreadReference object for the thread that owns the monitor.

Methods declared in interface com.sun.jdi.Mirror

toString, virtualMachine

Methods

monitor

ObjectReference monitor()

Returns the ObjectReference object for the monitor.

Returns:
the ObjectReference object 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:
ThreadReference.ownedMonitorsAndFrames()

stackDepth

int 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:
ThreadReference.ownedMonitorsAndFrames()

thread

ThreadReference thread()

Returns a ThreadReference object for the thread that owns the monitor.

Returns:
a ThreadReference object 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:
ThreadReference.frame(int)

© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.jdi/com/sun/jdi/MonitorInfo.html