Package com.scalagent.scheduler

Examples of com.scalagent.scheduler.Scheduler


   * @throws Exception
   */
  public static void main(String[] args) throws Exception {
    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


  public void initialize(boolean firstTime) {
    super.initialize(firstTime);

    try {
      if (scheduler == null)
        scheduler = new Scheduler(AgentServer.getTimer());
      else
        scheduler.restart(AgentServer.getTimer());
    } catch (Exception exc) {
      if (logger.isLoggable(BasicLevel.ERROR))
        logger.log(BasicLevel.ERROR, "SchedulerQueue.initialize(" + firstTime + ')', exc);
View Full Code Here

TOP

Related Classes of com.scalagent.scheduler.Scheduler

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.