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

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

There is a newer version: 24.2.0
Show 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: Long): Unit
  final def incr(): Unit = { incr(1) }
  def metadata: Metadata
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy