Package uk.org.microbase.scheduler.db

Examples of uk.org.microbase.scheduler.db.ProcessLogDAO


  {
    this.clientRuntime = runtime;
//    this.installationDirRoot = runtime.getJobInstallDir();
    this.schedulerDB = runtime.getSchedulerDB();
    responderDao = new ResponderDAO(schedulerDB);
    processLogDao = new ProcessLogDAO(schedulerDB);
    activeProcessDao = new ActiveProcessDAO();
    responderLoadDao = new ResponderLoadDAO();
  }
View Full Code Here


      ActiveProcessDAO activeProcessDao, ActiveProcess process)
  {
    this.runtime = runtime;
    this.activeProcessDao = activeProcessDao;
    this.process = process;
    this.processLogDao = new ProcessLogDAO(runtime.getSchedulerDB());
//    this.dlManager = runtime.getDownloadManager();
    //File baseInstallDir = runtime.getJobInstallDir();
//    processInstallDir = new File(baseInstallDir,
//        process.getResponder().getTaskTypeGuid()+"."+Math.random());
    webappDir = runtime.getContainerAppDir();
View Full Code Here

TOP

Related Classes of uk.org.microbase.scheduler.db.ProcessLogDAO

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.