Called when a stream needs to be restarted, the implementation should generate a request that
will yield a new stream whose first response would come right after the last response received
by processResponse.
Parameter
Name
Description
originalRequest
RequestT
Returns
Type
Description
RequestT
processResponse(ResponseT response)
publicResponseTprocessResponse(ResponseTresponse)
Called by the ServerStreamingAttemptCallable when a response has been successfully
received. This method accomplishes two goals:
It allows the strategy implementation to update its internal state so that it can compose
the resume request
It allows the strategy to alter the incoming responses to adjust for after resume. For
example, if the responses are numbered sequentially from the start of the stream, upon
resume, the strategy could rewrite the messages to continue the sequence from where it
left off. Please note that all messages (even for the first attempt) will be passed
through this method.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This webpage provides documentation for the `SimpleStreamResumptionStrategy` class in the `com.google.api.gax.retrying` package, with version 2.63.1 being the latest available version."],["`SimpleStreamResumptionStrategy` is the simplest implementation of `StreamResumptionStrategy`, which is used to return the initial request for unstarted streams."],["The class allows for stream resumption by creating new instances without accumulated state, as well as by providing methods such as `canResume()`, `createNew()`, `getResumeRequest()`, and `processResponse()`."],["It implements `StreamResumptionStrategy` and inherits members from `java.lang.Object`, offering methods like `clone()`, `equals()`, and `hashCode()`."],["This page also contains a list of previous versions of this implementation, all the way down to version 2.7.1, showing the evolution of the `SimpleStreamResumptionStrategy`."]]],[]]