< prev index next > src/jdk.jdi/share/classes/com/sun/jdi/request/ThreadStartRequest.java
Print this page
import com.sun.jdi.ThreadReference;
import com.sun.jdi.event.EventQueue;
import com.sun.jdi.event.EventSet;
import com.sun.jdi.event.ThreadStartEvent;
- import jdk.internal.javac.PreviewFeature;
/**
* Request for notification when a thread starts execution in the target VM.
* When an enabled ThreadStartRequest is hit, an
* {@link EventSet event set} containing a
* The default implementation throws {@code UnsupportedOperationException}.
*
* @throws InvalidRequestStateException if this request is currently
* enabled or has been deleted
*
- * @since 19
+ * @since 21
*/
- @PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS, reflective = true)
default void addPlatformThreadsOnlyFilter() {
throw new UnsupportedOperationException("Method not implemented");
}
}
< prev index next >