Package com.alipay.bluewhale.core.stats.RollingWindow

Examples of com.alipay.bluewhale.core.stats.RollingWindow.UpdateParams


  @SuppressWarnings("unchecked")
  @Override
  public <T> Object execute(T... args) {
    Map<Object, Pair> curr = null;
    if (args != null && args.length > 0) {
      UpdateParams p = (UpdateParams) args[0];
      if (p.curr != null) {
        curr = (Map<Object, Pair>) p.curr;
      } else {
        curr = new HashMap<Object, Pair>();
      }
View Full Code Here


  @SuppressWarnings("unchecked")
  @Override
  public <T> Object execute(T... args) {
    Map<Object, Long> curr = null;
    if (args != null && args.length > 0) {
      UpdateParams p = (UpdateParams) args[0];
      if (p.curr != null) {
        curr = (Map<Object, Long>) p.curr;
      } else {
        curr = new HashMap<Object, Long>();
      }
View Full Code Here

TOP

Related Classes of com.alipay.bluewhale.core.stats.RollingWindow.UpdateParams

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.