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/RemoteHostImpl.java
/*
* Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package sun.tools.jstatd;
import java.util.*;
import java.nio.*;
import java.io.*;
import java.net.*;
import java.rmi.*;
import java.rmi.server.*;
import sun.jvmstat.monitor.*;
import sun.jvmstat.monitor.event.*;
import sun.jvmstat.monitor.remote.*;
/**
* Concrete implementation of the RemoteHost interface for the HotSpot
* PerfData <em>rmi:</em> protocol.
* <p>
* This class provides remote access to the instrumentation exported
* by HotSpot Java Virtual Machines through the PerfData shared memory
* interface.
*
* @author Brian Doherty
* @since 1.5
*/
public class RemoteHostImpl implements RemoteHost, HostListener {
private MonitoredHost monitoredHost;
private Set<Integer> activeVms;
private static RemoteVm rvm;
private final int rmiPort;
public RemoteHostImpl() throws MonitorException {
this(0);
}
public RemoteHostImpl(int rmiPort) throws MonitorException {
this.rmiPort = rmiPort;
try {
monitoredHost = MonitoredHost.getMonitoredHost("localhost");
} catch (URISyntaxException e) { }
activeVms = monitoredHost.activeVms();
monitoredHost.addHostListener(this);
}
public RemoteVm attachVm(int lvmid, String mode)
throws RemoteException, MonitorException {
Integer v = lvmid;
RemoteVm stub = null;
StringBuilder sb = new StringBuilder();
sb.append("local://").append(lvmid).append("@localhost");
if (mode != null) {
sb.append("?mode=").append(mode);
}
String vmidStr = sb.toString();
try {
VmIdentifier vmid = new VmIdentifier(vmidStr);
MonitoredVm mvm = monitoredHost.getMonitoredVm(vmid);
rvm = new RemoteVmImpl((BufferedMonitoredVm)mvm);
stub = (RemoteVm) UnicastRemoteObject.exportObject(rvm, rmiPort);
}
catch (URISyntaxException e) {
throw new RuntimeException("Malformed VmIdentifier URI: "
+ vmidStr, e);
}
return stub;
}
public void detachVm(RemoteVm rvm) throws RemoteException {
rvm.detach();
}
public int[] activeVms() throws MonitorException {
Object[] vms = null;
int[] vmids = null;
vms = monitoredHost.activeVms().toArray();
vmids = new int[vms.length];
for (int i = 0; i < vmids.length; i++) {
vmids[i] = ((Integer)vms[i]).intValue();
}
return vmids;
}
public void vmStatusChanged(VmStatusChangeEvent ev) {
synchronized(this.activeVms) {
activeVms.retainAll(ev.getActive());
}
}
public void disconnected(HostEvent ev) {
// we only monitor the local host, so this event shouldn't occur.
}
}
⏎ sun/tools/jstatd/RemoteHostImpl.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, ∼2748🔥, 0💬
Popular Posts:
SLF4J API is a simple API that allows to plug in any desired logging library at deployment time. Her...
Where Can I see Java Source Code files for Xerces Java 2.11.2? Here are Java Source Code files for X...
JDK 17 jdk.jfr.jmod is the JMOD file for JDK 17 JFR module. JDK 17 JFR module compiled class files a...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
What JAR files are required to run sax\Writer.java provided in the Apache Xerces package? 1 JAR file...