com.scaleset.search.es.agg.AggregationResultsConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scaleset-search Show documentation
Show all versions of scaleset-search Show documentation
Java object model for representing query requests in REST protocols.
package com.scaleset.search.es.agg;
import com.scaleset.search.Aggregation;
import com.scaleset.search.AggregationResults;
import com.scaleset.search.es.ResultsConverter;
import org.elasticsearch.search.aggregations.Aggregations;
public interface AggregationResultsConverter {
AggregationResults convertResult(ResultsConverter resultsConverter, Aggregation aggregation, Aggregations aggs);
}