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, ∼3533🔥, 0💬
Popular Posts:
What Is HttpComponents httpcore-4.4.6.jar? HttpComponents httpcore-4.4.6.jar is the JAR file for Apa...
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
JDK 11 jdk.jdeps.jmod is the JMOD file for JDK 11 JDeps tool, which can be invoked by the "jdeps" co...
The JMX technology provides the tools for building distributed, Web-based, modular and dynamic solut...