Package net.ex337.scriptus.model.scheduler

Source Code of net.ex337.scriptus.model.scheduler.ScheduledScriptAction

package net.ex337.scriptus.model.scheduler;

import java.util.UUID;

import net.ex337.scriptus.exceptions.ScriptusRuntimeException;
import net.ex337.scriptus.model.ScriptAction;

/**
* Base class for script actions that interact with the scheduler.
*
* @author ian
*
*/
public abstract class ScheduledScriptAction extends ScriptAction {
   
    private long when;

  public abstract UUID getPid();
 
  public abstract String toString();
  public abstract void fromString(String s);

  /**
   * The nonce should be shared between the state object and the
   * action being scheduled for that object. This way, if the state
   * of the process changes, we will know to discard the scheduled
   * action.
   *
   * @return
   */
  public abstract long getNonce();

  /**
   * Used to deserialise the action from DAO.
   *
   */
  public static ScheduledScriptAction readFromString(String s) {
   
    String klazz = s.substring(0, s.indexOf("/"));
   
    ScheduledScriptAction a;
    try {
      a = (ScheduledScriptAction) Class.forName(klazz).newInstance();
    } catch (InstantiationException e) {
      throw new ScriptusRuntimeException(e);
    } catch (IllegalAccessException e) {
      throw new ScriptusRuntimeException(e);
    } catch (ClassNotFoundException e) {
      throw new ScriptusRuntimeException(e);
    }
    a.fromString(s);
   
    return a;
   
  }

    public long getWhen() {
        return when;
    }

    public void setWhen(long when) {
        this.when = when;
    }
 
}
TOP

Related Classes of net.ex337.scriptus.model.scheduler.ScheduledScriptAction

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.