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/jvmstat/perfdata/monitor/protocol/rmi/RemoteVmManager.java
/* * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.jvmstat.perfdata.monitor.protocol.rmi; import java.util.*; import java.util.regex.*; import java.io.*; import java.rmi.RemoteException; import sun.jvmstat.monitor.*; import sun.jvmstat.monitor.event.*; import sun.jvmstat.monitor.remote.*; /** * Class for managing the RemoteMonitoredVm instances on a remote system. * <p> * This class is responsible for the mechanism that detects the active * HotSpot Java Virtual Machines on the remote host and possibly for a * specific user. The ability to detect all possible HotSpot Java Virtual * Machines on the remote host may be limited by the permissions of the * principal running the RMI server application on the remote host. * * @author Brian Doherty * @since 1.5 */ public class RemoteVmManager { private RemoteHost remoteHost; private String user; /** * Creates a RemoteVmManager instance for the remote system. * <p> * Manages RemoteMonitordVm instances for which the principal * running the remote server has appropriate permissions. * * @param remoteHost the remote proxy object to the RMI server on * the remote system. */ public RemoteVmManager(RemoteHost remoteHost) { this(remoteHost, null); } /** * Creates a RemoteVmManager instance for the given user. * <p> * Manages RemoteMonitoredVm instances for all remote Java Virtual * machines owned by the specified user on the remote system. The * RMI server on the remote system must have the appropriate permissions * to access the named users Java Virtual Machines. * * @param remoteHost the remote proxy object to the RMI server on * the remote system. * @param user the name of the user */ public RemoteVmManager(RemoteHost remoteHost, String user) { this.user = user; this.remoteHost = remoteHost; } /** * Return the current set of monitorable Java Virtual Machines. * <p> * The set returned by this method depends on the user name passed * to the constructor. If no user name was specified, then this * method will return all candidate JVMs on the system. Otherwise, * only the JVMs for the given user will be returned. This assumes * that the RMI server process has the appropriate permissions to * access the target set of JVMs. * * @return Set - the Set of monitorable Java Virtual Machines */ public Set<Integer> activeVms() throws MonitorException { int[] active = null; try { active = remoteHost.activeVms(); } catch (RemoteException e) { throw new MonitorException("Error communicating with remote host: " + e.getMessage(), e); } Set<Integer> activeSet = new HashSet<Integer>(active.length); for (int i = 0; i < active.length; i++) { activeSet.add(active[i]); } return activeSet; } }
⏎ sun/jvmstat/perfdata/monitor/protocol/rmi/RemoteVmManager.java
⇒ JDK 11 jdk.localedata.jmod - Locale Data Module
2020-06-30, 1758👍, 0💬
Popular Posts:
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
How to download and install mysql-connector-java-5.1 .40.zip?Connector/J Java library is a JDBC Driv...