Module jdk.jdi

Interface ThreadStartEvent

  • All Superinterfaces:
    Event, Mirror

    public interface ThreadStartEvent
    extends Event
    Notification of a new running thread in the target VM. The new thread can be the result of a call to Thread.start() or the result of attaching a new thread to the VM though JNI. The notification is generated by the new thread some time before its execution starts. Because of this timing, it is possible to receive other events for the thread before this event is received. (Notably, MethodEntryEvents and MethodExitEvents might occur during thread initialization.) It is also possible for VirtualMachine.allThreads() to return a new started thread before this event is received.

    Note that this event gives no information about the creation of the thread object which may have happened much earlier, depending on the VM being debugged.

    Since:
    1.3
    See Also:
    EventQueue, VirtualMachine, ThreadReference
    • Method Detail

微信小程序

微信扫一扫体验

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部