管理インタフェースは、プラットフォームMBeanServerにも登録されます。MBeanServer内で管理インタフェースを一意に識別するObjectNameは、次の形式を取ります。 java.nio:type=BufferPool,name=pool name pool nameは、バッファ・プールの名前です。
ManagementFactoryHelper的getBufferPoolMXBeans方法会通过createBufferPoolMXBean方法创建两个BufferPoolMXBean,然后添加到bufferPools 其中一个是DirectBufferPool,一个是MappedBufferPool;他们分别使用SharedSecrets.getJavaNioAccess().getDirectBufferPool()以及sun.nio.ch.FileChannelImpl.getMappedBufferPool()来创建 createB...
ManagementFactoryHelper的getBufferPoolMXBeans方法会通过createBufferPoolMXBean方法创建两个BufferPoolMXBean,然后添加到bufferPools 其中一个是DirectBufferPool,一个是MappedBufferPool;他们分别使用SharedSecrets.getJavaNioAccess().getDirectBufferPool()以及sun.nio.ch.FileChannelImpl.getMappedBufferPool()来创建 createB...
public long getMappedBufferPoolCount() { return mappedBufferPool != null ? mappedBufferPool.getCount() : 0; } } 代码示例来源:origin: LinShunKang/MyPerf4J public JvmBufferPoolMetrics(BufferPoolMXBean mxBean) { this.name = mxBean.getName(); this.count = mxBean.getCount(); this.memoryUs...
フィールド | コンストラクタ | メソッド 検索 機械翻訳について モジュール java.management パッケージ java.lang.management インタフェースBufferPoolMXBean すべてのスーパー・インタフェース: PlatformManagedObject public interface BufferPoolMXBean extends PlatformManagedObject ダイレクト...
public interfaceBufferPoolMXBeanextendsPlatformManagedObject ダイレクト・バッファのプールやマップされたバッファのプールなど、バッファ・プールのための管理インタフェースです。 このインタフェースを実装するクラスは、MXBeanです。Java仮想マシンには、このインタフェースが1つ以上実装さ...
The management interfaces are also registered with the platform. Thethat uniquely identifies the management interface within theMBeanServertakes the form: java.nio:type=BufferPool,name=pool name wherepool nameis thenameof the buffer pool. Since: ...
A class implementing this interface is anMXBean. A Java virtual machine has one or more implementations of this interface. ThegetPlatformMXBeansmethod can be used to obtain the list ofBufferPoolMXBeanobjects representing the management interfaces for pools of buffers as follows: ...
Interface BufferPoolMXBean All Superinterfaces: PlatformManagedObject public interfaceBufferPoolMXBeanextendsPlatformManagedObject The management interface for a buffer pool, for example a pool ofdirectormappedbuffers. A class implementing this interface is anMXBean. A Java virtual machine has one or more...