Packages

trait Counter extends Metric

Incrementing and decrementing Counter metric.

Linear Supertypes
Metric, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Counter
  2. Metric
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def decrement(n: Long): Unit

    Decrement the Counter by n.

    Decrement the Counter by n.

    n

    amount to decrement

  2. abstract def decrement(): Unit

    Decrement the Counter by one.

  3. abstract def destroy(): Unit

    Destroy the Metric.

    Destroy the Metric.

    Definition Classes
    Metric
  4. abstract def increment(n: Long): Unit

    Increment the Counter by n.

    Increment the Counter by n.

    n

    amount to increment

  5. abstract def increment(): Unit

    Increment the Counter by one.