Package com.alibaba.jstorm.task

Examples of com.alibaba.jstorm.task.UptimeComputer


  public TaskHeartbeatRunable(WorkerData workerData) {
   
   
    this.zkCluster = workerData.getZkCluster();
    this.topology_id = workerData.getTopologyId();
    this.uptime = new UptimeComputer();;
    this.storm_conf = workerData.getStormConf();
    this.active = workerData.getActive();

    String key = Config.TASK_HEARTBEAT_FREQUENCY_SECS;
    Object time = storm_conf.get(key);
View Full Code Here

TOP

Related Classes of com.alibaba.jstorm.task.UptimeComputer

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.