use of uk.gov.gchq.gaffer.hbasestore.coprocessor.processor.StoreAggregationProcessor in project Gaffer by gchq.
the class StoreScanner method createProcessors.
protected static List<GafferScannerProcessor> createProcessors(final Schema schema, final ElementSerialisation serialisation) {
final List<GafferScannerProcessor> processors = new ArrayList<>();
if (schema.isAggregationEnabled()) {
processors.add(new StoreAggregationProcessor(serialisation, schema));
}
processors.add(new ValidationProcessor(schema));
return processors;
}
Aggregations