Interface LongCounter

All Known Implementing Classes:
ReflectionLongAdderCounter

public interface LongCounter
An interface for a long base counter.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(long delta)
    Adds the delta to this counter.
    long
    Returns the value of this counter.
  • Method Details

    • add

      void add(long delta)
      Adds the delta to this counter.
    • value

      long value()
      Returns the value of this counter.