Package it.sauronsoftware.cron4j

The classes in this package implement a UNIX cron-like scheduler for the Java 2 1.2 (or later) platform.

See:
          Description

Interface Summary
SchedulerListener Implement this interface and register your instance with the Scheduler.addSchedulerListener(SchedulerListener) method to receive notifications about scheduled task executions.
TaskCollector This interface describes a task collector.
TaskExecutionContext A TaskExecutionContext object provides support methods for the execution of a task.
TaskExecutorListener A TaskExecutorListener is notified with events from a TaskExecutor.
 

Class Summary
CronParser A parser for crontab-like formatted files and streams.
Predictor A predictor is able to predict when a scheduling pattern will be matched.
ProcessTask A built-in Task implementation which can be used to run an external process.
Scheduler The cron4j scheduler.
SchedulingPattern A UNIX crontab-like pattern is a string split in five space separated parts.
SchedulingPatternValidator Deprecated. Use SchedulingPattern.validate(String).
Task Abstract base representation of a cron4j task.
TaskExecutor Represents a task executor, which is something similar to threads.
TaskTable A table coupling tasks with scheduling patterns.
 

Exception Summary
InvalidPatternException This kind of exception is thrown if an invalid scheduling pattern is encountered by the scheduler.
 

Package it.sauronsoftware.cron4j Description

The classes in this package implement a UNIX cron-like scheduler for the Java 2 1.2 (or later) platform.