All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.finagle.stats.Counter.scala Maven / Gradle / Ivy

The newest version!
package com.twitter.finagle.stats

/**
 * A writeable Counter. Only sums are kept of Counters. An example
 * Counter is "number of requests served".
 */
trait Counter {
  def incr(delta: Int)
  def incr() { incr(1) }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy