- 
 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 toThread.start()MethodEntryEvents andMethodExitEvents might occur during thread initialization.) It is also possible forVirtualMachine.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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ThreadReferencethread()Returns the thread which has started.- 
Methods declared in interface com.sun.jdi.MirrortoString, virtualMachine
 
- 
 
- 
- 
- 
Method Detail- 
threadThreadReference thread() Returns the thread which has started.- Returns:
- a ThreadReferencewhich mirrors the event's thread in the target VM.
 
 
- 
 
-