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

org.infinispan.jmx.JmxStatisticsExposer Maven / Gradle / Ivy

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

/**
 * Interface containing common cache management operations
 *
 * @author Jerry Gauthier
 * @since 4.0
 */
public interface JmxStatisticsExposer {
   /**
    * Returns whether an interceptor's statistics are being captured.
    *
    * @return true if statistics are captured
    */
   boolean getStatisticsEnabled();

   /**
    * Enables an interceptor's cache statistics If true, the interceptor will capture statistics and make them available
    * through the mbean.
    *
    * @param enabled true if statistics should be captured
    */
   void setStatisticsEnabled(boolean enabled);

   /**
    * Resets an interceptor's cache statistics
    */
   void resetStatistics();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy