Package jease.cms.service

Source Code of jease.cms.service.Timers

/*
    Copyright (C) 2011 maik.jablonski@jease.org

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
package jease.cms.service;

import java.util.Timer;
import java.util.TimerTask;

import jease.Names;
import jease.Registry;
import jfix.util.Validations;

/**
* Implements a simple Timer which runs a runnable task from the Registry for
* every second.
*/
public class Timers {

  private static Timer timer;
  private static String source;
  private static Runnable runnable;

  public static void start() {
    stop();
    timer = new Timer();
    timer.schedule(new TimerTask() {
      public void run() {
        try {
          String newSource = Registry
              .getParameter(Names.JEASE_TIMER_TASK);
          if (Validations.isNotEmpty(newSource)) {
            if (!Validations.equals(source, newSource)) {
              source = newSource;
              runnable = (Runnable) Compilers.eval(source);
            }
            if (runnable != null) {
              runnable.run();
            }
          }
        } catch (Throwable e) {
          e.printStackTrace();
          source = null;
          runnable = null;
        }
      }
    }, 1000, 1000);
  }

  public static void stop() {
    if (timer != null) {
      timer.cancel();
      source = null;
      runnable = null;
    }
  }

}
TOP

Related Classes of jease.cms.service.Timers

TOP
Copyright © 2018 www.massapi.com. 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.