Package com.alipay.bluewhale.core.stats

Examples of com.alipay.bluewhale.core.stats.BaseTaskStatsRolling


*/
public class TasksCommon {
  private final static Logger LOG = Logger.getLogger(TasksCommon.class);

  public static BaseTaskStatsRolling mk_task_stats(Object obj, int rate) {
    BaseTaskStatsRolling stat=null;
    if (obj instanceof IBolt) {
      stat= Stats.mk_bolt_stats(rate);
    }else{
      stat=Stats.mk_spout_stats(rate);
    }
View Full Code Here

TOP

Related Classes of com.alipay.bluewhale.core.stats.BaseTaskStatsRolling

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.