This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.lang.management
class MemoryNotificationInfo

java.lang.Object extended by java.lang.management.MemoryNotificationInfo

Most common way to construct:

CompositeData cd = …;

MemoryNotificationInfo info = MemoryNotificationInfo.from(cd);

Based on 87 examples


public class MemoryNotificationInfo
extends Object

The information about a memory notification.

A memory notification is emitted by {@link MemoryMXBean} when the Java virtual machine detects that the memory usage of a memory pool is exceeding a threshold value. The notification emitted will contain the memory notification information about the detected condition:

A {@link CompositeData CompositeData} representing the MemoryNotificationInfo object is stored in the {@link javax.management.Notification#setUserData user data} of a {@link javax.management.Notification notification}. The {@link #from from} method is provided to convert from a CompositeData to a MemoryNotificationInfo object. For example:

      Notification notif;

      // receive the notification emitted by MemoryMXBean and set to notif
      ...
            
      String notifType = notif.getType();
      if (notifType.equals(MemoryNotificationInfo.MEMORY_THRESHOLD_EXCEEDED) ||
          notifType.equals(MemoryNotificationInfo.MEMORY_COLLECTION_THRESHOLD_EXCEEDED)) {
          // retrieve the memory notification information
          CompositeData cd = (CompositeData) notif.getUserData();
          MemoryNotificationInfo info = MemoryNotificationInfo.from(cd);
          ....
      }  
 

The types of notifications emitted by MemoryMXBean are:


Field Summary
static String MEMORY_COLLECTION_THRESHOLD_EXCEEDED
          Notification type denoting that the memory usage of a memory pool is greater than or equal to its collection usage threshold after the Java virtual machine has expended effort in recycling unused objects in that memory pool.
static String MEMORY_THRESHOLD_EXCEEDED
          Notification type denoting that the memory usage of a memory pool has reached or exceeded its usage threshold value.
 
Constructor Summary
MemoryNotificationInfo(String poolName, MemoryUsage usage, long count)

          Constructs a MemoryNotificationInfo object.
 
Method Summary
static MemoryNotificationInfo

          Returns a MemoryNotificationInfo object represented by the given CompositeData.
 long

          Returns the number of times that the memory usage has crossed a threshold when the notification was constructed.
 String

          Returns the name of the memory pool that triggers this notification.
 MemoryUsage

          Returns the memory usage of the memory pool when this notification was constructed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MEMORY_COLLECTION_THRESHOLD_EXCEEDED

public static final String MEMORY_COLLECTION_THRESHOLD_EXCEEDED
Notification type denoting that the memory usage of a memory pool is greater than or equal to its collection usage threshold after the Java virtual machine has expended effort in recycling unused objects in that memory pool. This notification is emitted by {@link MemoryMXBean}. The value of this notification type is java.management.memory.collection.threshold.exceeded.

MEMORY_THRESHOLD_EXCEEDED

public static final String MEMORY_THRESHOLD_EXCEEDED
Notification type denoting that the memory usage of a memory pool has reached or exceeded its usage threshold value. This notification is emitted by {@link MemoryMXBean}. Subsequent crossing of the usage threshold value does not cause further notification until the memory usage has returned to become less than the usage threshold value. The value of this notification type is java.management.memory.threshold.exceeded.
Constructor Detail

MemoryNotificationInfo

public MemoryNotificationInfo(String poolName,
                              MemoryUsage usage,
                              long count)
Constructs a MemoryNotificationInfo object.

Parameters:
poolName - The name of the memory pool which triggers this notification.
usage - Memory usage of the memory pool.
count - The threshold crossing count.
Method Detail

from

public static MemoryNotificationInfo from(CompositeData cd)
Returns a MemoryNotificationInfo object represented by the given CompositeData. The given CompositeData must contain the following attributes:
Attribute Name Type
poolName java.lang.String
usage javax.management.openmbean.CompositeData
count java.lang.Long

Parameters:
cd - CompositeData representing a MemoryNotificationInfo
Returns:
a MemoryNotificationInfo object represented by cd if cd is not null; null otherwise.

getCount

public long getCount()
Returns the number of times that the memory usage has crossed a threshold when the notification was constructed. For usage threshold notifications, this count will be the {@link MemoryPoolMXBean#getUsageThresholdCount threshold count}. For collection threshold notifications, this count will be the {@link MemoryPoolMXBean#getCollectionUsageThresholdCount collection usage threshold count}.

Returns:
the number of times that the memory usage has crossed a threshold when the notification was constructed.

getPoolName

public String getPoolName()
Returns the name of the memory pool that triggers this notification. The memory pool usage has crossed a threshold.

Returns:
the name of the memory pool that triggers this notification.

getUsage

public MemoryUsage getUsage()
Returns the memory usage of the memory pool when this notification was constructed.

Returns:
the memory usage of the memory pool when this notification was constructed.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.