kz.greetgo.scheduling.SchedulerMatcherDelegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.scheduling Show documentation
Show all versions of greetgo.scheduling Show documentation
Scheduler using in greetgo!
package kz.greetgo.scheduling;
public interface SchedulerMatcherDelegate {
boolean match(long lastCheckTime, long now);
boolean isParallel();
void taskStartedAt(long taskStartedAt);
void taskFinishedAt(long taskFinishedAt);
void taskFellInExecutionQueueAt(long taskFellInExecutionQueueAt);
}