-
public interface ThreadDeathEvent extends Event
在目标虚拟机中通知已完成的线程。 通知由死亡线程在终止之前生成。 由于这个时机,VirtualMachine.allThreads()
可以在收到此事件后返回此线程。请注意,此事件不提供有关线程对象的生命周期的信息。 根据目标VM中存在的参考,它可能会或可能不会很快收集。
- 从以下版本开始:
- 1.3
- 另请参见:
-
EventQueue
,VirtualMachine
,ThreadReference
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 ThreadReference
thread()
返回正在终止的线程。-
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
-
-
-
-
方法详细信息
-
thread
ThreadReference thread()
返回正在终止的线程。- 结果
-
a
ThreadReference
which mirrors the event's thread in the target VM.
-
-