java.lang.management

Interface BufferPoolMXBean

  • All Superinterfaces:
    PlatformManagedObject

    public interface BufferPoolMXBean
    extends PlatformManagedObject
    The management interface for a buffer pool, for example a pool of direct or mapped buffers.

    A class implementing this interface is an MXBean. A Java virtual machine has one or more implementations of this interface. The getPlatformMXBeans method can be used to obtain the list of BufferPoolMXBean objects representing the management interfaces for pools of buffers as follows:

         List<BufferPoolMXBean> pools = ManagementFactory.getPlatformMXBeans(BufferPoolMXBean.class);
     

    The management interfaces are also registered with the platform MBeanServer. The ObjectName that uniquely identifies the management interface within the MBeanServer takes the form:

         java.nio:type=BufferPool,name=pool name
     
    where pool name is the name of the buffer pool.
    Since:
    1.7
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      long getCount()
      Returns an estimate of the number of buffers in the pool.
      long getMemoryUsed()
      Returns an estimate of the memory that the Java virtual machine is using for this buffer pool.
      String getName()
      Returns the name representing this buffer pool.
      long getTotalCapacity()
      Returns an estimate of the total capacity of the buffers in this pool.

      Erste Seite von API Java Inhaltsverzeichnis Haut

      • Methods inherited from interface java.lang.management.PlatformManagedObject

        getObjectName
    • Method Detail

      • getName

        String getName()
        Returns the name representing this buffer pool.
        Returns:
        The name of this buffer pool.
      • getCount

        long getCount()
        Returns an estimate of the number of buffers in the pool.
        Returns:
        An estimate of the number of buffers in this pool
      • getTotalCapacity

        long getTotalCapacity()
        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.
        Returns:
        An estimate of the total capacity of the buffers in this pool in bytes
      • getMemoryUsed

        long getMemoryUsed()
        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 capacity of the buffers in this pool. This difference is explained by alignment, memory allocator, and other implementation specific reasons.
        Returns:
        An estimate of the memory that the Java virtual machine is using for this buffer pool in bytes, or -1L if an estimate of the memory usage is not available

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/lang/management/BufferPoolMXBean.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut