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

org.quartz.core.NullSampledStatisticsImpl Maven / Gradle / Ivy

The newest version!
package org.quartz.core;

public class NullSampledStatisticsImpl implements SampledStatistics {
    public long getJobsCompletedMostRecentSample() {
        return 0;
    }

    public long getJobsExecutingMostRecentSample() {
        return 0;
    }

    public long getJobsScheduledMostRecentSample() {
        return 0;
    }

    public void shutdown() {
        // nothing to do
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy