Package com.taobao.zeus.model

Examples of com.taobao.zeus.model.JobDescriptor


  }

  @Override
  public JobDescriptor createJob(String user, String jobName,
      String parentGroup, JobRunType jobType) throws ZeusException {
    JobDescriptor jd=groupManager.createJob(user, jobName, parentGroup, jobType);
    try {
      worker.updateJobFromWeb(jd.getId());
    } catch (Exception e) {
      String msg="创建Job成功,但是调度Job失败";
      log.error(msg,e);
      throw new ZeusException(msg,e);
    }
View Full Code Here

TOP

Related Classes of com.taobao.zeus.model.JobDescriptor

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.