public static interface ClientPB.ScanResponseOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
Modifier and Type | Method and Description |
---|---|
int |
getCellsPerResult(int index)
This field is filled in if we are doing cellblocks.
|
int |
getCellsPerResultCount()
This field is filled in if we are doing cellblocks.
|
List<Integer> |
getCellsPerResultList()
This field is filled in if we are doing cellblocks.
|
boolean |
getMoreResults()
optional bool more_results = 3; |
ClientPB.Result |
getResults(int index)
If cells are not carried in an accompanying cellblock, then they are pb'd here.
|
int |
getResultsCount()
If cells are not carried in an accompanying cellblock, then they are pb'd here.
|
List<ClientPB.Result> |
getResultsList()
If cells are not carried in an accompanying cellblock, then they are pb'd here.
|
long |
getScannerId()
optional uint64 scanner_id = 2; |
int |
getTtl()
optional uint32 ttl = 4; |
boolean |
hasMoreResults()
optional bool more_results = 3; |
boolean |
hasScannerId()
optional uint64 scanner_id = 2; |
boolean |
hasTtl()
optional uint32 ttl = 4; |
List<Integer> getCellsPerResultList()
This field is filled in if we are doing cellblocks. A cellblock is made up of all Cells serialized out as one cellblock BUT responses from a server have their Cells grouped by Result. So we can reconstitute the Results on the client-side, this field is a list of counts of Cells in each Result that makes up the response. For example, if this field has 3, 3, 3 in it, then we know that on the client, we are to make three Results each of three Cells each.
repeated uint32 cells_per_result = 1;
int getCellsPerResultCount()
This field is filled in if we are doing cellblocks. A cellblock is made up of all Cells serialized out as one cellblock BUT responses from a server have their Cells grouped by Result. So we can reconstitute the Results on the client-side, this field is a list of counts of Cells in each Result that makes up the response. For example, if this field has 3, 3, 3 in it, then we know that on the client, we are to make three Results each of three Cells each.
repeated uint32 cells_per_result = 1;
int getCellsPerResult(int index)
This field is filled in if we are doing cellblocks. A cellblock is made up of all Cells serialized out as one cellblock BUT responses from a server have their Cells grouped by Result. So we can reconstitute the Results on the client-side, this field is a list of counts of Cells in each Result that makes up the response. For example, if this field has 3, 3, 3 in it, then we know that on the client, we are to make three Results each of three Cells each.
repeated uint32 cells_per_result = 1;
boolean hasScannerId()
optional uint64 scanner_id = 2;
long getScannerId()
optional uint64 scanner_id = 2;
boolean hasMoreResults()
optional bool more_results = 3;
boolean getMoreResults()
optional bool more_results = 3;
boolean hasTtl()
optional uint32 ttl = 4;
int getTtl()
optional uint32 ttl = 4;
List<ClientPB.Result> getResultsList()
If cells are not carried in an accompanying cellblock, then they are pb'd here. This field is mutually exclusive with cells_per_result (since the Cells will be inside the pb'd Result)
repeated .Result results = 5;
ClientPB.Result getResults(int index)
If cells are not carried in an accompanying cellblock, then they are pb'd here. This field is mutually exclusive with cells_per_result (since the Cells will be inside the pb'd Result)
repeated .Result results = 5;
int getResultsCount()
If cells are not carried in an accompanying cellblock, then they are pb'd here. This field is mutually exclusive with cells_per_result (since the Cells will be inside the pb'd Result)
repeated .Result results = 5;
Copyright © 2010–2017 The Async HBase Authors. All rights reserved.