Package org.springframework.xd.analytics.metrics.core

Examples of org.springframework.xd.analytics.metrics.core.Gauge


    setGaugeValue(gauge, value);
  }

  @Override
  public void reset(String name) {
    Gauge gauge = getOrCreate(name);
    setGaugeValue(gauge, 0);
  }
View Full Code Here

TOP

Related Classes of org.springframework.xd.analytics.metrics.core.Gauge

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.