-
public interface ThreadStartEvent extends Event
目标VM中新运行线程的通知。 新线程可以是调用
的结果,也可以是通过JNI将新线程附加到VM的结果。 新线程在执行开始之前的某个时间生成通知。 由于此时间,可以在收到此事件之前接收线程的其他事件。 (值得注意的是,在线程初始化期间可能会出现Thread.start()
MethodEntryEvent
和MethodExitEvent
. )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.
-
-