use of org.apache.geode.CancelCriterion in project geode by apache.
the class SimpleStatSamplerIntegrationTest method initStatisticsFactory.
private void initStatisticsFactory() {
CancelCriterion stopper = new CancelCriterion() {
public String cancelInProgress() {
return null;
}
public RuntimeException generateCancelledException(Throwable e) {
return null;
}
};
this.statisticsFactory = new LocalStatisticsFactory(stopper);
}
Aggregations