Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
Collections:
Other Resources:
JDK 17 jdk.jfr.jmod - JFR Module
JDK 17 jdk.jfr.jmod is the JMOD file for JDK 17 JFR module.
JDK 17 JFR module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jfr.jmod.
JDK 17 JFR module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JFR module source code files are stored in \fyicenter\jdk-17.0.5\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/consumer/StreamConfiguration.java
/*
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.jfr.internal.consumer;
import java.time.Instant;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;
import jdk.jfr.consumer.MetadataEvent;
import jdk.jfr.consumer.RecordedEvent;
import jdk.jfr.internal.Utils;
import jdk.jfr.internal.consumer.Dispatcher.EventDispatcher;
final class StreamConfiguration {
final List<Runnable> closeActions = new ArrayList<>();
final List<Runnable> flushActions = new ArrayList<>();
final List<EventDispatcher> eventActions = new ArrayList<>();
final List<Consumer<Throwable>> errorActions = new ArrayList<>();
final List<Consumer<MetadataEvent>> metadataActions = new ArrayList<>();
boolean reuse = true;
boolean ordered = true;
Instant startTime = null;
Instant endTime = null;
boolean started = false;
long startNanos = 0;
long endNanos = Long.MAX_VALUE;
private volatile boolean changed = true;
public synchronized boolean remove(Object action) {
boolean removed = false;
removed |= flushActions.removeIf(e -> e == action);
removed |= closeActions.removeIf(e -> e == action);
removed |= errorActions.removeIf(e -> e == action);
removed |= eventActions.removeIf(e -> e.getAction() == action);
removed |= metadataActions.removeIf(e -> e == action);
if (removed) {
changed = true;
}
return removed;
}
public synchronized void addEventAction(String name, Consumer<RecordedEvent> consumer) {
eventActions.add(new EventDispatcher(name, consumer));
changed = true;
}
public void addEventAction(Consumer<RecordedEvent> action) {
addEventAction(null, action);
}
public synchronized void addFlushAction(Runnable action) {
flushActions.add(action);
changed = true;
}
public synchronized void addCloseAction(Runnable action) {
closeActions.add(action);
changed = true;
}
public synchronized void addErrorAction(Consumer<Throwable> action) {
errorActions.add(action);
changed = true;
}
public synchronized void addMetadataAction(Consumer<MetadataEvent> action) {
metadataActions.add(action);
changed = true;
}
public synchronized void setReuse(boolean reuse) {
this.reuse = reuse;
changed = true;
}
public synchronized void setOrdered(boolean ordered) {
this.ordered = ordered;
changed = true;
}
public synchronized void setEndTime(Instant endTime) {
this.endTime = endTime;
this.endNanos = Utils.timeToNanos(endTime);
changed = true;
}
public synchronized void setStartTime(Instant startTime) {
this.startTime = startTime;
this.startNanos = Utils.timeToNanos(startTime);
changed = true;
}
public synchronized void setStartNanos(long startNanos) {
this.startNanos = startNanos;
changed = true;
}
public synchronized void setStarted(boolean started) {
this.started = started;
changed = true;
}
public boolean hasChanged() {
return changed;
}
public void setChanged(boolean changed) {
this.changed = changed;
}
}
⏎ jdk/jfr/internal/consumer/StreamConfiguration.java
Or download all of them as a single archive file:
File name: jdk.jfr-17.0.5-src.zip File size: 363343 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jlink.jmod - JLink Tool
2023-04-17, ≈42🔥, 0💬
Popular Posts:
JDK 11 jdk.localedata.jmod is the JMOD file for JDK 11 Localedata module. JDK 11 Locale Data module ...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...
JDK 11 jdk.jdi.jmod is the JMOD file for JDK 11 JDI (Java Debug Interface) tool. JDK 11 JDI tool com...
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...