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 11 jdk.jfr.jmod - JFR Module
JDK 11 jdk.jfr.jmod is the JMOD file for JDK 11 JFR module.
JDK 11 JFR module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jfr.jmod.
JDK 11 JFR module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JFR module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.jfr.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/jfr/internal/handlers/EventHandler.java
/* * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.jfr.internal.handlers; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import jdk.jfr.EventType; import jdk.jfr.internal.EventControl; import jdk.jfr.internal.JVM; import jdk.jfr.internal.PlatformEventType; import jdk.jfr.internal.PrivateAccess; import jdk.jfr.internal.StringPool; // Users should not be subclass for security reasons. public abstract class EventHandler { // Accessed by generated sub class protected final PlatformEventType platformEventType; private final EventType eventType; private final EventControl eventControl; // Accessed by generated sub class EventHandler(boolean registered, EventType eventType, EventControl eventControl) { this.eventType = eventType; this.platformEventType = PrivateAccess.getInstance().getPlatformEventType(eventType); this.eventControl = eventControl; platformEventType.setRegistered(registered); } final protected StringPool createStringFieldWriter() { return new StringPool(); } // Accessed by generated code in event class public final boolean shouldCommit(long duration) { return isEnabled() && duration >= platformEventType.getThresholdTicks(); } // Accessed by generated code in event class // Accessed by generated sub class public final boolean isEnabled() { return platformEventType.isCommitable(); } public final EventType getEventType() { return eventType; } public final PlatformEventType getPlatformEventType() { return platformEventType; } public final EventControl getEventControl() { return eventControl; } public static long timestamp() { return JVM.counterTime(); } public static long duration(long startTime) { if (startTime == 0) { // User forgot to invoke begin, or instrumentation was // added after the user invoked begin. // Returning 0 will make it an instant event return 0; } return timestamp() - startTime; } // Prevent a malicious user from instantiating a generated event handlers. @Override public final Object clone() throws java.lang.CloneNotSupportedException { throw new CloneNotSupportedException(); } private final void writeObject(ObjectOutputStream out) throws IOException { throw new IOException("Object cannot be serialized"); } private final void readObject(ObjectInputStream in) throws IOException { throw new IOException("Class cannot be deserialized"); } public boolean isRegistered() { return platformEventType.isRegistered(); } public boolean setRegistered(boolean registered) { return platformEventType.setRegistered(registered); } }
⏎ jdk/jfr/internal/handlers/EventHandler.java
Or download all of them as a single archive file:
File name: jdk.jfr-11.0.1-src.zip File size: 237632 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jlink.jmod - JLink Tool
2020-06-30, 37788👍, 0💬
Popular Posts:
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
JDK 11 jdk.compiler.jmod is the JMOD file for JDK 11 Compiler tool, which can be invoked by the "jav...
What is the sax\Counter.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 inst...
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module. JDK 11 Desktop module compiled ...