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

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

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 - 2024 Weber Informatics LLC | Privacy Policy