org.quartz.core.SampledStatistics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sundial Show documentation
Show all versions of sundial Show documentation
A Lightweight Java Job Scheduling Framework
package org.quartz.core;
public interface SampledStatistics {
long getJobsScheduledMostRecentSample();
long getJobsExecutingMostRecentSample();
long getJobsCompletedMostRecentSample();
void shutdown();
}