Package com.taobao.top.analysis.node.monitor

Examples of com.taobao.top.analysis.node.monitor.JobExecutionLog


    public JobExecutionLog jobExecutionLog;
    public List<JobTaskExecutionLog> logList;
    public ReentrantLock lock;
   
    public JobExecutionLogContainer(String jobName) {
      jobExecutionLog = new JobExecutionLog(jobName);
      logList = new ArrayList<JobTaskExecutionLog>();
      lock = new ReentrantLock();
    }
View Full Code Here

TOP

Related Classes of com.taobao.top.analysis.node.monitor.JobExecutionLog

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.