Interface GarbageCollectorMXBean
- All Superinterfaces:
GarbageCollectorMXBean, MemoryManagerMXBean, PlatformManagedObject
Platform-specific management interface for a garbage collector
which performs collections in cycles.
This platform extension is only available to the garbage collection implementation that supports this extension.
- Since:
- 1.5
-
Method Summary
Modifier and TypeMethodDescriptionReturns the GC information about the most recent GC.Methods declared in interface GarbageCollectorMXBean
getCollectionCount, getCollectionTimeModifier and TypeMethodDescriptionlongReturns the total number of collections that have occurred.longReturns the approximate accumulated collection elapsed time in milliseconds.Methods declared in interface MemoryManagerMXBean
getMemoryPoolNames, getName, isValidMethods declared in interface PlatformManagedObject
getObjectNameModifier and TypeMethodDescriptionReturns anObjectNameinstance representing the object name of this platform managed object.
-
Method Details
-
getLastGcInfo
GcInfo getLastGcInfo()Returns the GC information about the most recent GC. This method returns aGcInfo. If no GC information is available,nullis returned. The collector-specific attributes, if any, can be obtained via theCompositeDatainterface.MBeanServer access: The mapped type of
GcInfoisCompositeDatawith attributes specified inGcInfo.- Returns:
- a
GcInfoobject representing the most GC information; ornullif no GC information available.
-