ReadRowsResponse

com.google.bigtable.v2.bigtable.ReadRowsResponse
See theReadRowsResponse companion object
final case class ReadRowsResponse(chunks: Seq[CellChunk], lastScannedRowKey: ByteString, requestStats: Option[RequestStats], unknownFields: UnknownFieldSet) extends GeneratedMessage, Updatable[ReadRowsResponse]

Response message for Bigtable.ReadRows.

Value parameters

chunks

A collection of a row's contents as part of the read request.

lastScannedRowKey

Optionally the server might return the row key of the last row it has scanned. The client can use this to construct a more efficient retry request if needed: any row keys or portions of ranges less than this row key can be dropped from the request. This is primarily useful for cases where the server has read a lot of data that was filtered out since the last committed row key, allowing the client to skip that work on a retry.

requestStats

If requested, provide enhanced query performance statistics. The semantics dictate: * request_stats is empty on every (streamed) response, except * request_stats has non-empty information after all chunks have been streamed, where the ReadRowsResponse message only contains request_stats. * For example, if a read request would have returned an empty response instead a single ReadRowsResponse is streamed with empty chunks and request_stats filled. Visually, response messages will stream as follows: ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}} &92;/ &92;/ Primary response Trailer of RequestStats info Or if the read did not return any values: {chunks: [], request_stats: {...}} &92;/ Trailer of RequestStats info

Attributes

Companion
object
Source
ReadRowsResponse.scala
Graph
Supertypes
trait Updatable[ReadRowsResponse]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def addAllChunks(`__vs`: Iterable[CellChunk]): ReadRowsResponse

Attributes

Source
ReadRowsResponse.scala

Attributes

Source
ReadRowsResponse.scala

Attributes

Source
ReadRowsResponse.scala
def getField(`__field`: FieldDescriptor): PValue

Attributes

Source
ReadRowsResponse.scala
def getFieldByNumber(`__fieldNumber`: Int): Any

Attributes

Source
ReadRowsResponse.scala
override def serializedSize: Int

Attributes

Definition Classes
GeneratedMessage
Source
ReadRowsResponse.scala
def toProtoString: String

Returns a human-readable ASCII format representation of this message.

Returns a human-readable ASCII format representation of this message.

The original message can be decoded from this format by using fromAscii on the companion object.

Attributes

Returns

human-readable representation of this message.

Source
ReadRowsResponse.scala

Attributes

Source
ReadRowsResponse.scala
def withLastScannedRowKey(`__v`: ByteString): ReadRowsResponse

Attributes

Source
ReadRowsResponse.scala
def withUnknownFields(`__v`: UnknownFieldSet): ReadRowsResponse

Attributes

Source
ReadRowsResponse.scala
def writeTo(`_output__`: CodedOutputStream): Unit

Serializes the message into the given coded output stream

Serializes the message into the given coded output stream

Attributes

Source
ReadRowsResponse.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
final def toByteArray: Array[Byte]

Serializes the message and returns a byte array containing its raw bytes

Serializes the message and returns a byte array containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toByteString: ByteString

Serializes the message and returns a ByteString containing its raw bytes

Serializes the message and returns a ByteString containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toPMessage: PMessage

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala

Attributes

Inherited from:
Updatable
Source
Lenses.scala
final def writeDelimitedTo(output: OutputStream): Unit

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def writeTo(output: OutputStream): Unit

Serializes the message into the given output stream

Serializes the message into the given output stream

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala