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

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

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

/**
 * Track the sample distribution of events.
 */
public interface DistributionSummaryTracker {

   /**
    * Updates the statistics kept by the summary with the specified amount.
    *
    * @param amount Amount for an event being tracked.
    */
   void record(double amount);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy