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

org.infinispan.stats.ClusterStats Maven / Gradle / Ivy

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

/**
 * @author Ryan Emerson
 * @since 9.0
 */
interface ClusterStats {
   /**
    * @return The time in milliseconds, to wait between requests before re-retrieving cluster wide stats
    */
   long getStaleStatsThreshold();

   /**
    * @param threshold the time in milliseconds, to wait between requests before re-retrieving cluster wide stats
    */
   void setStaleStatsThreshold(long threshold);

   /**
    * Reset the collected statistics
    */
   void reset();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy