Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 11 jdk.jstatd.jmod - JStatd Module
JDK 11 jdk.jstatd.jmod is the JMOD file for JDK 11 JStatd module.
JDK 11 JStatd module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jstatd.jmod.
JDK 11 JStatd module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JStatd module source code files are stored in \fyicenter\jdk-11.0.1\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, 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; public RemoteHostImpl() throws MonitorException { 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); RemoteVmImpl rvm = new RemoteVmImpl((BufferedMonitoredVm)mvm); stub = (RemoteVm) UnicastRemoteObject.exportObject(rvm, 0); } 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
⇒ JDK 11 jdk.localedata.jmod - Locale Data Module
2020-06-30, 1766👍, 0💬
Popular Posts:
The SOAP with Attachments API for JavaTM (SAAJ) 1.3 provides the API for creating and sending SOAP m...
Apache Axis2 is the core engine for Web services. It is a complete re-design and re-write of the wid...
Where to find answers to frequently asked questions on Download and Installing of FOP 2.0? Here is a...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
What Is jtds-1.2.1.jar? jtds-1.2.1.jar is the JAR files of jTDS Java library 1.2.1, which is a JDBC ...