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

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

There is a newer version: 2.5.0-rc1
Show 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