Examples of ZeusJobException


Examples of com.taobao.zeus.schedule.mvc.ZeusJobException

        }
        boolean success = resp.getStatus() == Status.OK ? true : false;

        if (!success) {
          // 运行失败,更新失败状态,发出失败消息
          ZeusJobException jobException = null;
          if (exception != null) {
            jobException = new ZeusJobException(history.getJobId(),
                String.format("JobId:%s run failed ",
                    history.getJobId()), exception);
          } else {
            jobException = new ZeusJobException(history.getJobId(),
                String.format("JobId:%s run failed ",
                    history.getJobId()));
          }
          ScheduleInfoLog.info("jobId:" + history.getJobId()
              + " run fail ");
View Full Code Here

Examples of com.taobao.zeus.schedule.mvc.ZeusJobException

        }
        context.getGroupManager().updateJobStatus(jobstatus);

        if (!success) {
          // 运行失败,更新失败状态,发出失败消息
          ZeusJobException jobException = null;
          if (exception != null) {
            jobException = new ZeusJobException(jobId,
                String.format("JobId:%s run failed ", jobId),
                exception);
          } else {
            jobException = new ZeusJobException(jobId,
                String.format("JobId:%s run failed ", jobId));
          }
          ScheduleInfoLog.info("JobId:" + jobId
              + " run fail and dispatch the fail event");
          JobFailedEvent jfe = new JobFailedEvent(jobId, type,
View Full Code Here
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.