-
- All Superinterfaces:
-
Event
,Locatable
,LocatableEvent
,Mirror
public interface MonitorWaitedEvent extends LocatableEvent
通知目标VM中的线程已完成等待监视器对象。- 从以下版本开始:
- 1.6
- 另请参见:
-
EventQueue
,MonitorWaitEvent
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 ObjectReference
monitor()
返回此线程等待的监视器对象。ThreadReference
thread()
返回发生此事件的线程。boolean
timedout()
返回等待是否已超时或已中断。-
声明方法的接口 com.sun.jdi.Mirror
toString, virtualMachine
-
-
-
-
方法详细信息
-
thread
ThreadReference thread()
返回发生此事件的线程。- Specified by:
-
thread
在界面LocatableEvent
- 结果
-
ThreadReference
,它镜像目标VM中的事件线程。
-
monitor
ObjectReference monitor()
返回此线程等待的监视器对象。- 结果
-
显示器的
ObjectReference
。
-
timedout
boolean timedout()
返回等待是否已超时或已中断。- 结果
-
true
如果等待超时。
-
-