com.scalar.db.rpc.ScanRequestOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: scalardb.proto
package com.scalar.db.rpc;
public interface ScanRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:rpc.ScanRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .rpc.Scan scan = 1;
* @return Whether the scan field is set.
*/
boolean hasScan();
/**
* .rpc.Scan scan = 1;
* @return The scan.
*/
com.scalar.db.rpc.Scan getScan();
/**
* .rpc.Scan scan = 1;
*/
com.scalar.db.rpc.ScanOrBuilder getScanOrBuilder();
/**
* optional int32 fetch_count = 2;
* @return Whether the fetchCount field is set.
*/
boolean hasFetchCount();
/**
* optional int32 fetch_count = 2;
* @return The fetchCount.
*/
int getFetchCount();
}