Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
Collections:
Other Resources:
JDK 11 java.management.jmod - Management Module
JDK 11 java.management.jmod is the JMOD file for JDK 11 Management module.
JDK 11 Management module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.management.jmod.
JDK 11 Management module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Management module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.management.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/lang/management/BufferPoolMXBean.java
/* * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.lang.management; /** * The management interface for a buffer pool, for example a pool of * {@link java.nio.ByteBuffer#allocateDirect direct} or {@link * java.nio.MappedByteBuffer mapped} buffers. * * <p> A class implementing this interface is an * {@link javax.management.MXBean}. A Java * virtual machine has one or more implementations of this interface. The {@link * java.lang.management.ManagementFactory#getPlatformMXBeans getPlatformMXBeans} * method can be used to obtain the list of {@code BufferPoolMXBean} objects * representing the management interfaces for pools of buffers as follows: * <pre> * List<BufferPoolMXBean> pools = ManagementFactory.getPlatformMXBeans(BufferPoolMXBean.class); * </pre> * * <p> The management interfaces are also registered with the platform {@link * javax.management.MBeanServer MBeanServer}. The {@link * javax.management.ObjectName ObjectName} that uniquely identifies the * management interface within the {@code MBeanServer} takes the form: * <pre> * java.nio:type=BufferPool,name=<i>pool name</i> * </pre> * where <em>pool name</em> is the {@link #getName name} of the buffer pool. * * @since 1.7 */ public interface BufferPoolMXBean extends PlatformManagedObject { /** * Returns the name representing this buffer pool. * * @return The name of this buffer pool. */ String getName(); /** * Returns an estimate of the number of buffers in the pool. * * @return An estimate of the number of buffers in this pool */ long getCount(); /** * Returns an estimate of the total capacity of the buffers in this pool. * A buffer's capacity is the number of elements it contains and the value * returned by this method is an estimate of the total capacity of buffers * in the pool in bytes. * * @return An estimate of the total capacity of the buffers in this pool * in bytes */ long getTotalCapacity(); /** * Returns an estimate of the memory that the Java virtual machine is using * for this buffer pool. The value returned by this method may differ * from the estimate of the total {@link #getTotalCapacity capacity} of * the buffers in this pool. This difference is explained by alignment, * memory allocator, and other implementation specific reasons. * * @return An estimate of the memory that the Java virtual machine is using * for this buffer pool in bytes, or {@code -1L} if an estimate of * the memory usage is not available */ long getMemoryUsed(); }
⏎ java/lang/management/BufferPoolMXBean.java
Or download all of them as a single archive file:
File name: java.management-11.0.1-src.zip File size: 828174 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.management.rmi.jmod - Management RMI Module
2020-04-30, 98994👍, 0💬
Popular Posts:
What Is mail.jar of JavaMail 1.4? I got the JAR file from javamail-1_4.zip. mail.jar in javamail-1_4...
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.0.2? The if y...
maven-core-3.5.4.jar is the JAR file for Apache Maven 3.5.4 Core module. Apache Maven is a software ...
Java Cryptography Extension 1.2.2 JAR File Size and Download Location: File name: jce.jar, jce-1.2.2...
What Is HttpComponents httpcore-4.2.2.jar? HttpComponents httpcore-4.2.2.jar is the JAR file for Apa...