org.apache.hadoop.hbase.protobuf.generated
Interface ClientProtos.ScanResponseOrBuilder
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
- ClientProtos.ScanResponse, ClientProtos.ScanResponse.Builder
- Enclosing class:
- ClientProtos
public static interface ClientProtos.ScanResponseOrBuilder
- extends com.google.protobuf.MessageOrBuilder
| Methods inherited from interface com.google.protobuf.MessageOrBuilder |
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField |
| Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder |
isInitialized |
getCellsPerResultList
List<Integer> getCellsPerResultList()
repeated uint32 cells_per_result = 1;
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.
getCellsPerResultCount
int getCellsPerResultCount()
repeated uint32 cells_per_result = 1;
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.
getCellsPerResult
int getCellsPerResult(int index)
repeated uint32 cells_per_result = 1;
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.
hasScannerId
boolean hasScannerId()
optional uint64 scanner_id = 2;
getScannerId
long getScannerId()
optional uint64 scanner_id = 2;
hasMoreResults
boolean hasMoreResults()
optional bool more_results = 3;
getMoreResults
boolean getMoreResults()
optional bool more_results = 3;
hasTtl
boolean hasTtl()
optional uint32 ttl = 4;
getTtl
int getTtl()
optional uint32 ttl = 4;
getResultsList
List<ClientProtos.Result> getResultsList()
repeated .Result results = 5;
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)
getResults
ClientProtos.Result getResults(int index)
repeated .Result results = 5;
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)
getResultsCount
int getResultsCount()
repeated .Result results = 5;
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)
getResultsOrBuilderList
List<? extends ClientProtos.ResultOrBuilder> getResultsOrBuilderList()
repeated .Result results = 5;
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)
getResultsOrBuilder
ClientProtos.ResultOrBuilder getResultsOrBuilder(int index)
repeated .Result results = 5;
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)
Copyright © 2013 The Apache Software Foundation. All Rights Reserved.