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

com.codahale.metrics.LongAdderAdapter Maven / Gradle / Ivy

There is a newer version: 8.1.2
Show newest version
package com.codahale.metrics;

/**
 * Interface which exposes the LongAdder functionality. Allows different
 * LongAdder implementations to coexist together.
 */
interface LongAdderAdapter {

    void add(long x);

    long sum();

    void increment();

    void decrement();

    long sumThenReset();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy