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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


MemoryNotificationInfojava.lang.management

Java 5.0

This class holds information about memory usage
in a given memory pool and is generated when that usage crosses a
threshold specified by a MemoryPoolMXBean. Use the
from( ) method to construct a
MemoryNotificationInfo object from the user data
of a javax.management.Notification object.
Notifications and the javax.management package are
beyond the scope of this book.

public class

MemoryNotificationInfo {
// Public Constructors
public

MemoryNotificationInfo (String

poolName , MemoryUsage

usage , long

count );
// Public Constants
public static final String

MEMORY_COLLECTION_THRESHOLD_EXCEEDED ;
="java.management.memory.collection.threshold.exceeded"
public static final String

MEMORY_THRESHOLD_EXCEEDED ;
="java.management.memory.threshold.exceeded"
// Public Class Methods
public static MemoryNotificationInfo

from (javax.management.openmbean.CompositeData

cd );
// Public Instance Methods
public long

getCount ( );
public String

getPoolName ( );
public MemoryUsage

getUsage ( );
}



    / 1191