Interface JavaMonitor
- All Known Implementing Classes:
DTFJJavaObjectMonitor
,DTFJJavaSystemMonitor
,JavaMonitor
,JCJavaMonitor
,PHDCorruptJavaMonitor
,PHDJavaMonitor
public interface JavaMonitor
Represents a Java monitor (either an object monitor or a raw monitor).
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Compares the argument to the receiver, and answers true if they represent the same object using a class specific comparison.Get the set of threads waiting to enter the monitorgetID()
Get the identifier for this monitorgetName()
Note that the name of a JavaMonitor is not necessarily meaningful but is provided here as it is usually present in the running VM.Get the set of threads waiting to be notified on the monitor (in the Object.wait method)Get the object associated with this monitor.getOwner()
Get the thread which currently owns the monitorint
hashCode()
Answers an integer hash code for the receiver.
-
Method Details
-
getObject
JavaObject getObject()Get the object associated with this monitor.- Returns:
- the object associated with this monitor, or null if this is a raw monitor or a valid object could not be retrieved.
-
getName
Note that the name of a JavaMonitor is not necessarily meaningful but is provided here as it is usually present in the running VM. If there is no name for the monitor a synthetic name will be created by DTFJ.- Returns:
- the name of the monitor (never null)
- Throws:
CorruptDataException
-
getOwner
Get the thread which currently owns the monitor- Returns:
- the owner of the monitor, or null if the monitor is unowned
- Throws:
CorruptDataException
-
getEnterWaiters
Iterator getEnterWaiters()Get the set of threads waiting to enter the monitor- Returns:
- an iterator over the collection of threads waiting to enter this monitor
- See Also:
-
getNotifyWaiters
Iterator getNotifyWaiters()Get the set of threads waiting to be notified on the monitor (in the Object.wait method)- Returns:
- an iterator over the collection of threads waiting to be notified on this monitor
- See Also:
-
getID
ImagePointer getID()Get the identifier for this monitor- Returns:
- The pointer which uniquely identifies this monitor in memory.
-
equals
Description copied from class:java.lang.Object
Compares the argument to the receiver, and answers true if they represent the same object using a class specific comparison. The implementation in Object answers true only if the argument is the exact same object as the receiver (==). -
hashCode
int hashCode()Description copied from class:java.lang.Object
Answers an integer hash code for the receiver. Any two objects which answertrue
when passed to.equals
must answer the same value for this method.
-