Examples of DebugSuccessEvent


Examples of com.taobao.zeus.schedule.mvc.event.DebugSuccessEvent

              history.getFileId(), history, exception);
          context.getDispatcher().forwardEvent(jfe);
        } else {
          // 运行成功,发出成功消息
          DebugInfoLog.info("debugId:" + debugId + " run success");
          DebugSuccessEvent dse = new DebugSuccessEvent(
              history.getFileId(), history);
          context.getDispatcher().forwardEvent(dse);
        }
      }
    }.start();
View Full Code Here

Examples of com.taobao.zeus.schedule.mvc.event.DebugSuccessEvent

        FileDescriptor fd=fileManager.getFile(history.getFileId());
       
        String msg="调试任务:"+fd.getName()+" 运行失败";
        //此处可以发送IM消息
      }else if(mvce.getAppEvent() instanceof DebugSuccessEvent){
        final DebugSuccessEvent event=(DebugSuccessEvent) mvce.getAppEvent();
        DebugHistory history=event.getHistory();
        FileDescriptor fd=fileManager.getFile(history.getFileId());
       
        String msg="调试任务:"+fd.getName()+" 运行成功";
        //此处可以发送IM消息
      }
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.