Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


MemoryManagerMXBeanjava.lang.management

Java 5.0

This MXBean interface allows monitoring of
a single memory manager (such as a garbage collector) in a
Java VM. A VM implementation
typically has more than one memory manager, and the
ManagementFactory method
getMemoryManagerMXBeans( ) returns a
List of objects of this type. Some or all of the
objects in the returned list will also implement the
GarbageCollectorMXBean subinterface.

Each memory manager may manage one or more memory pools, and
getMemoryPoolNames(
) returns the names of these pools. See also
ManagementFactory.getMemoryPoolMXBeans( ) and
MemoryPoolMXBean.

public interface

MemoryManagerMXBean {
// Public Instance Methods
String[ ]

getMemoryPoolNames ( );
String

getName ( );
boolean

isValid ( );
}


Implementations


GarbageCollectorMXBean


    / 1191