gnu.java.lang.management
Class MemoryPoolMXBeanImpl
- DynamicMBean, MemoryPoolMXBean
Provides access to information about one of the memory
resources or pools used by the current invocation of the
virtual machine. An instance of this bean for each memory
pool is obtained by calling
ManagementFactory.getMemoryPoolMXBeans()
.
cacheMBeanInfo , getAttribute , getAttributes , getCachedMBeanInfo , getClassName , getConstructors , getDescription , getDescription , getDescription , getDescription , getDescription , getDescription , getDescription , getImpact , getImplementation , getImplementationClass , getMBeanInfo , getMBeanInterface , getParameterName , getParameterName , invoke , setAttribute , setAttributes , setImplementation |
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
getCollectionUsage
public MemoryUsage getCollectionUsage()
Returns memory usage statistics after a best-effort attempt
has been made to remove unused objects from the pool. This
method is designed for use by the pools of garbage collectors,
in order to monitor the amount of memory used after collections.
It will return null
if such functionality is
unsupported by the memory pool represented by this bean.
- getCollectionUsage in interface MemoryPoolMXBean
- the memory usage of the memory pool after the most
recent garbage collection cycle, or
null
if this operation is not supported.
getPeakUsage
public MemoryUsage getPeakUsage()
Returns memory usage statistics for the peak memory usage
of the pool. The peak is the maximum memory usage occurring
since the virtual machine was started or since the peak
was reset by
MemoryPoolMXBean.resetPeakUsage()
. The return value
may be
null
if this pool is no longer valid.
- getPeakUsage in interface MemoryPoolMXBean
- the memory usage of the memory pool at its peak,
or
null
if this pool is no longer valid.
getUsage
public MemoryUsage getUsage()
Returns memory usage statistics for the current memory usage
of the pool. The return value may be null
if
this pool is no longer valid. Obtaining these values is
expected to be a relatively quick operation; if this will
instead be an expensive operation to perform, the documentation
of the implementating bean should specify that this is the
case. The values are intended to be an estimate for monitoring
purposes.
- getUsage in interface MemoryPoolMXBean
- the memory usage of the memory pool at present,
or
null
if this pool is no longer valid.
isValid
public boolean isValid()
Returns true if this memory pool is still valid. A memory pool
becomes invalid when it is removed by the virtual machine and
no longer used.
- isValid in interface MemoryPoolMXBean
- true if this memory pool is valid.
MemoryPoolMXBeanImpl.java - Implementation of a memory pool bean
Copyright (C) 2006 Free Software Foundation
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.