Class ReadRowsResumptionStrategy (3.4.0)

public class ReadRowsResumptionStrategy implements StreamResumptionStrategy<ReadRowsRequest,ReadRowsResponse>

An implementation of a StreamResumptionStrategy for the ReadRows API. This class tracks the offset of the last row received and, upon retry, attempts to resume the stream at the next offset.

This class is considered an internal implementation detail and not meant to be used by applications.

Inheritance

java.lang.Object > ReadRowsResumptionStrategy

Constructors

ReadRowsResumptionStrategy()

public ReadRowsResumptionStrategy()

Methods

canResume()

public boolean canResume()
Returns
TypeDescription
boolean

createNew()

public StreamResumptionStrategy<ReadRowsRequest,ReadRowsResponse> createNew()
Returns
TypeDescription
StreamResumptionStrategy<ReadRowsRequest,ReadRowsResponse>

getResumeRequest(ReadRowsRequest originalRequest)

public ReadRowsRequest getResumeRequest(ReadRowsRequest originalRequest)

Given the initial/original request, this implementation generates a request that will yield a new stream whose first response would come right after the last response received by processResponse. It takes into account the offset from the original request.

Parameter
NameDescription
originalRequestReadRowsRequest
Returns
TypeDescription
ReadRowsRequest

processResponse(ReadRowsResponse response)

public ReadRowsResponse processResponse(ReadRowsResponse response)
Parameter
NameDescription
responseReadRowsResponse
Returns
TypeDescription
ReadRowsResponse