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

com.ajjpj.asysmon.servlet.memgc.GcDetails Maven / Gradle / Ivy

There is a newer version: 1.0-pre28
Show newest version
package com.ajjpj.asysmon.servlet.memgc;

import java.util.ArrayList;
import java.util.List;

/**
 * @author arno
 */
class GcDetails {
    final long startMillis;
    final long durationNanos;
    final String gcType;

    final String cause;
    final String algorithm;

    final List memDetails = new ArrayList();

    GcDetails(long startMillis, long durationNanos, String gcType, String cause, String algorithm) {
        this.startMillis = startMillis;
        this.durationNanos = durationNanos;
        this.gcType = gcType;
        this.cause = cause;
        this.algorithm = algorithm;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy