Package it.sauronsoftware.cron4j

Examples of it.sauronsoftware.cron4j.Task


*/
public class MyTaskCollector implements TaskCollector {

  public TaskTable getTasks() {
    SchedulingPattern pattern = new SchedulingPattern("* * * * *");
    Task task = new MyTask();
    TaskTable ret = new TaskTable();
    ret.add(pattern, task);
    return ret;
  }
View Full Code Here

TOP

Related Classes of it.sauronsoftware.cron4j.Task

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.