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.jstatd.jmod - JStatd Module
JDK 17 jdk.jstatd.jmod is the JMOD file for JDK 17 JStatd module.
JDK 17 JStatd module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jstatd.jmod.
JDK 17 JStatd module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JStatd module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.jstatd.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/tools/jstatd/RemoteVmImpl.java
/*
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package sun.tools.jstatd;
import sun.jvmstat.monitor.*;
import sun.jvmstat.monitor.remote.*;
/**
* Concrete implementation of the RemoteVm interface for the HotSpot PerfData
* shared memory implementation of the jvmstat monitoring APIs. This class
* providing remote access to the instrumentation exported by a local HotSpot
* Java Virtual Machine. The instrumentation buffer is shipped in whole to
* the remote machine, which is responsible for parsing and provide access
* to the contained data.
*
* @author Brian Doherty
* @since 1.5
*/
public class RemoteVmImpl implements RemoteVm {
private BufferedMonitoredVm mvm;
RemoteVmImpl(BufferedMonitoredVm mvm) {
this.mvm = mvm;
}
public byte[] getBytes() {
return mvm.getBytes();
}
public int getCapacity() {
return mvm.getCapacity();
}
public void detach() {
mvm.detach();
}
public int getLocalVmId() {
return mvm.getVmIdentifier().getLocalVmId();
}
}
⏎ sun/tools/jstatd/RemoteVmImpl.java
Or download all of them as a single archive file:
File name: jdk.jstatd-17.0.5-src.zip File size: 16755 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.localedata.jmod - Locale Data Module
2023-08-03, ∼3759🔥, 0💬
Popular Posts:
JDK 17 jdk.charsets.jmod is the JMOD file for JDK 17 Charsets module. JDK 17 Charsets module compile...
What JAR files are required to run sax\Writer.java provided in the Apache Xerces package? 1 JAR file...
What Is js.jar in Rhino JavaScript 1.7R5? js.jar in Rhino JavaScript 1.7R5 is the JAR file for Rhino...
A stream buffer is a stream-based representation of an XML infoset in Java. Stream buffers are desig...
This package is the backport of java.util.concurrent API, introduced in Java 5.0 and further refined...