Uses of Interface
de.mhus.lib.core.ITimerTask
-
Packages that use ITimerTask Package Description de.mhus.lib.core de.mhus.lib.core.io de.mhus.lib.core.schedule -
-
Uses of ITimerTask in de.mhus.lib.core
Classes in de.mhus.lib.core that implement ITimerTask Modifier and Type Class Description classMHousekeeperTaskclassMTimerTask -
Uses of ITimerTask in de.mhus.lib.core.io
Classes in de.mhus.lib.core.io that implement ITimerTask Modifier and Type Class Description classFileWatch -
Uses of ITimerTask in de.mhus.lib.core.schedule
Classes in de.mhus.lib.core.schedule that implement ITimerTask Modifier and Type Class Description classCronJobSchedule tasks like Crontab (man -S 5 crontab).classIntervalJobExecutes the task every 'interval' milliseconds after execution finished.classIntervalWithStartTimeJobExecutes the task every 'interval' milliseconds after execution finished.classOnceJobclassSchedulerJobclassSchedulerJobProxyclassTimerTaskAdapterMethods in de.mhus.lib.core.schedule that return ITimerTask Modifier and Type Method Description ITimerTaskSchedulerJob. getTask()ITimerTaskSchedulerJobProxy. getTask()Methods in de.mhus.lib.core.schedule with parameters of type ITimerTask Modifier and Type Method Description static SchedulerJobScheduler. createSchedulerJob(String interval, ITimerTask task)Create a job by definition.protected voidSchedulerJob. setTask(ITimerTask task)static SchedulerJobScheduler. toIntervalJob(String interval, ITimerTask task)Constructors in de.mhus.lib.core.schedule with parameters of type ITimerTask Constructor Description CronJob(String definition, ITimerTask task)CronJob(String name, CronJob.Definition definition, boolean restrictive, ITimerTask task)CronJob(String name, String definition, boolean restrictive, ITimerTask task)CronJob(String name, String definition, ITimerTask task)CronJob(String minute, String hour, String dayOfMonth, String month, String dayOfWeek, ITimerTask task)IntervalJob(long interval, ITimerTask task)IntervalWithStartTimeJob(long start, long interval, ITimerTask task)OnceJob(long time, ITimerTask task)OnceJob(Date time, ITimerTask task)SchedulerJob(ITimerTask task)SchedulerJob(String name, ITimerTask task)
-