gedi.solutions.geode.operations.stats.StatSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gedi-geode-extensions-core Show documentation
Show all versions of gedi-geode-extensions-core Show documentation
GemFire Enterprise Data Integration - common development extensions powered by Apache Geode
The newest version!
package gedi.solutions.geode.operations.stats;
public interface StatSpec extends ValueFilter {
/**
* Causes all stats that matches this spec, in all archive files, to be
* combined into a single global stat value.
*/
public static final int GLOBAL = 2;
/**
* Causes all stats that matches this spec, in each archive file, to be
* combined into a single stat value for each file.
*/
public static final int FILE = 1;
/**
* No combination is done.
*/
public final int NONE = 0;
/**
* @return one of the following values: {@link #GLOBAL}, {@link #FILE},
* {@link #NONE}.
*/
public int getCombineType();
}