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

org.infinispan.commons.stat.CounterMetricInfo Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.stat;

import java.util.Map;
import java.util.function.BiConsumer;

/**
 * Represents a counter. It sets {@link CounterTracker} into the target instance.
 * 

* A counter tracks a monotonically increasing values and never resets to a lesser value. * * @since 15.0 */ public final class CounterMetricInfo extends BaseSetterMetricInfo { public CounterMetricInfo(String name, String description, Map map, BiConsumer setter) { super(name, description, map, setter); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy