Package com.scalagent.scheduler

Examples of com.scalagent.scheduler.CronEvent


    System.out.println(new Date(System.currentTimeMillis()) + " : Cron test wait (1 minute) ...");
    Timer timer = new Timer();
   Scheduler scheduler = new Scheduler(timer);
   //<minutes> <hours> <days of month> <months> <days of week>
   String cronDate = "* * * * *"; // all minutes.
   scheduler.scheduleEvent(new CronEvent("cron_test", cronDate), new CronTestTask());
   System.in.read();
  }
View Full Code Here

TOP

Related Classes of com.scalagent.scheduler.CronEvent

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.