All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jamonapi.jmx.GcMXBean Maven / Gradle / Ivy

There is a newer version: 2.82
Show newest version
package com.jamonapi.jmx;

import java.util.Date;

/**
 * MxBean that gives information about the most recent gc firing.  This could be a major or minor collection.
 */
public interface GcMXBean {
    /**
     * @return String containing detailed information about the most recent gc firing.
     */
    public String getGcInfo();

    /**
     *
     * @return date of the most recent gc firing.
     */
    public Date getWhen();

    /**
     * @return duration of the most recent gc firing in ms.
     */
    public long getDuration();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy