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