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

Examples of org.springframework.xd.analytics.metrics.core.Counter.decrement()


  }

  @Override
  public synchronized long decrement(String name) {
    Counter c = getOrCreate(name);
    return c.decrement(1L);
  }

  @Override
  public synchronized void reset(String name) {
    save(new Counter(name));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.