Interface GetRangesQuery<RESPONSE_TYPE>
@Immutable
public interface GetRangesQuery<RESPONSE_TYPE>
-
Method Summary
Modifier and TypeMethodDescriptionParallelism to run this getRanges query with.default UnaryOperator<RangeRequest>
An operator invoked on each range request, to possibly improve the performance of range requests based on schema knowledge.tableRef()
BiFunction<RangeRequest,
com.palantir.common.base.BatchingVisitable<RowResult<byte[]>>, RESPONSE_TYPE>
-
Method Details
-
tableRef
TableReference tableRef() -
rangeRequests
Iterable<RangeRequest> rangeRequests() -
concurrencyLevel
Parallelism to run this getRanges query with. If not specified, a default value is selected. -
rangeRequestOptimizer
An operator invoked on each range request, to possibly improve the performance of range requests based on schema knowledge. The output of this operator is only used for internal queries: the user-provided visitable processor will receive the original range requests fromrangeRequests()
. -
visitableProcessor
BiFunction<RangeRequest,com.palantir.common.base.BatchingVisitable<RowResult<byte[]>>, visitableProcessor()RESPONSE_TYPE>
-