Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 17 jdk.jdi.jmod - JDI Tool
JDK 17 jdk.jdi.jmod is the JMOD file for JDK 17 JDI (Java Debug Interface) tool.
JDK 17 JDI tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jdi.jmod.
JDK 17 JDI tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JDI tool source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.jdi.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/jdi/request/EventRequest.java
/* * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.jdi.request; import com.sun.jdi.Mirror; import com.sun.jdi.ThreadReference; import com.sun.jdi.VMDisconnectedException; import com.sun.jdi.VMOutOfMemoryException; import com.sun.jdi.VirtualMachine; import com.sun.jdi.event.BreakpointEvent; import com.sun.jdi.event.EventQueue; import com.sun.jdi.event.EventSet; import com.sun.jdi.event.VMDisconnectEvent; /** * Represents a request for notification of an event. Examples include * {@link BreakpointRequest} and {@link ExceptionRequest}. * When an event occurs for which an enabled request is present, * an {@link EventSet EventSet} will * be placed on the {@link EventQueue EventQueue}. * The collection of existing event requests is * managed by the {@link EventRequestManager}. * <p> * The number of events generated for an event request can be controlled * through filters. Filters provide additional constraints that an event * must satisfy before it is placed on the event queue. Multiple filters can * be used by making multiple calls to filter addition methods such as * {@link ExceptionRequest#addClassFilter(java.lang.String classPattern)}. * Filters are added to an event one at a time only while the event is * disabled. Multiple filters are applied with CUT-OFF AND, in the order * it was added to the request. Only events that satisfy all filters are * placed in the event queue. * <p> * The set of available filters is dependent on the event request, * some examples of filters are: * <ul> * <li>Thread filters allow control over the thread for which events are * generated. * <li>Class filters allow control over the class in which the event * occurs. * <li>Instance filters allow control over the instance in which * the event occurs. * <li>Count filters allow control over the number of times an event * is reported. * </ul> * Filters can dramatically improve debugger performance by reducing the * amount of event traffic sent from the target VM to the debugger VM. * <p> * Any method on {@code EventRequest} which * takes {@code EventRequest} as an parameter may throw * {@link VMDisconnectedException} if the target VM is * disconnected and the {@link VMDisconnectEvent} has been or is * available to be read from the {@link EventQueue}. * <p> * Any method on {@code EventRequest} which * takes {@code EventRequest} as an parameter may throw * {@link VMOutOfMemoryException} if the target VM has run out of memory. * * @see BreakpointEvent * @see EventQueue * @see EventRequestManager * * @author Robert Field * @since 1.3 */ public interface EventRequest extends Mirror { /** * Determines if this event request is currently enabled. * * @return {@code true} if enabled; * {@code false} otherwise. */ boolean isEnabled(); /** * Enables or disables this event request. While this event request is * disabled, the event request will be ignored and the target VM * will not be stopped if any of its threads reaches the * event request. Disabled event requests still exist, * and are included in event request lists such as * {@link EventRequestManager#breakpointRequests()}. * * @param val {@code true} if the event request is to be enabled; * {@code false} otherwise. * @throws InvalidRequestStateException if this request * has been deleted. * @throws IllegalThreadStateException if this is a StepRequest, * {@code val} is {@code true}, and the * thread named in the request has died or is not yet started. */ void setEnabled(boolean val); /** * Same as {@link #setEnabled setEnabled(true)}. * @throws InvalidRequestStateException if this request * has been deleted. * @throws IllegalThreadStateException if this is a StepRequest * and the thread named in the request has died or is not yet started. */ void enable(); /** * Same as {@link #setEnabled setEnabled(false)}. * @throws InvalidRequestStateException if this request * has been deleted. */ void disable(); /** * Limit the requested event to be reported at most once after a * given number of occurrences. The event is not reported * the first {@code count - 1} times this filter is reached. * To request a one-off event, call this method with a count of 1. * <p> * Once the count reaches 0, any subsequent filters in this request * are applied. If none of those filters cause the event to be * suppressed, the event is reported. Otherwise, the event is not * reported. In either case subsequent events are never reported for * this request. * * @param count the number of ocurrences before generating an event. * @throws InvalidRequestStateException if this request is currently * enabled or has been deleted. * Filters may be added only to disabled requests. * @throws IllegalArgumentException if {@code count} * is less than one. */ void addCountFilter(int count); /** Suspend no threads when the event occurs */ int SUSPEND_NONE = 0; /** Suspend only the thread which generated the event when the event occurs */ int SUSPEND_EVENT_THREAD = 1; /** Suspend all threads when the event occurs */ int SUSPEND_ALL = 2; /** * Determines the threads to suspend when the requested event occurs * in the target VM. Use {@link #SUSPEND_ALL} to suspend all * threads in the target VM (the default). Use {@link #SUSPEND_EVENT_THREAD} * to suspend only the thread which generated the event. Use * {@link #SUSPEND_NONE} to suspend no threads. * <p> * Thread suspensions through events have the same functionality * as explicitly requested suspensions. See * {@link ThreadReference#suspend} and * {@link VirtualMachine#suspend} for details. * * @param policy the selected suspend policy. * @throws InvalidRequestStateException if this request is currently * enabled or has been deleted. * Suspend policy may only be set in disabled requests. * @throws IllegalArgumentException if the policy argument * contains an illegal value. */ void setSuspendPolicy(int policy); /** * Returns a value which describes the threads to suspend when the * requested event occurs in the target VM. * The returned value is {@link #SUSPEND_ALL}, * {@link #SUSPEND_EVENT_THREAD}, or {@link #SUSPEND_NONE}. * * @return the current suspend mode for this request */ int suspendPolicy(); /** * Add an arbitrary key/value "property" to this request. * The property can be used by a client of the JDI to * associate application information with the request; * These client-set properties are not used internally * by the JDI. * <p> * The {@code get/putProperty} methods provide access to * a small per-instance map. This is <b>not</b> to be confused * with {@link java.util.Properties}. * <p> * If value is null this method will remove the property. * * @see #getProperty */ void putProperty(Object key, Object value); /** * Returns the value of the property with the specified key. Only * properties added with {@link #putProperty} will return * a non-null value. * * @return the value of this property or null * @see #putProperty */ Object getProperty(Object key); }
⏎ com/sun/jdi/request/EventRequest.java
Or download all of them as a single archive file:
File name: jdk.jdi-17.0.5-src.zip File size: 476972 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jdwp.agent.jmod - JDWP Agent Module
2023-04-17, 13837👍, 0💬
Popular Posts:
JDK 11 jdk.dynalink.jmod is the JMOD file for JDK 11 Dynamic Linking module. JDK 11 Dynamic Linking ...
JDK 11 jdk.internal.opt.jmod is the JMOD file for JDK 11 Internal Opt module. JDK 11 Internal Opt mo...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
What is the sax\Counter.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 inst...
JDK 11 jdk.internal.le.jmod is the JMOD file for JDK 11 Internal Line Editing module. JDK 11 Interna...