当前页面:
在线文档首页 >
JDK 5 Documentation v1.4.0, Java 2 SDK 英文文档
ThreadDeathEvent (Java Debug Interface) - JDK 5 Documentation v1.4.0, Java 2 SDK 英文文档
com.sun.jdi.event
Interface ThreadDeathEvent
- All Superinterfaces:
- Event, Mirror
- public interface ThreadDeathEvent
- extends Event
Notification of a completed thread in the target VM. The
notification is generated by the dying thread before it terminates.
Because of this timing, it is possible
for VirtualMachine.allThreads()
to return this thread
after this event is received.
Note that this event gives no information
about the lifetime of the thread object. It may or may not be collected
soon depending on what references exist in the target VM.
- Since:
- 1.3
- See Also:
EventQueue
,
VirtualMachine
,
ThreadReference
Methods inherited from interface com.sun.jdi.event.Event |
request |
thread
public ThreadReference thread()
- Returns the thread which is terminating.
- Returns:
- a
ThreadReference
which mirrors the event's thread in
the target VM.