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-04-02 UTC."],[[["The provided content outlines the `SimpleStreamResumptionStrategy` class, which is the simplest implementation of `StreamResumptionStrategy` for unstarted streams, within the context of the Google API Client Library for Java."],["This class implements the `StreamResumptionStrategy` interface and allows for the creation of a new instance without any prior accumulated state using the `createNew()` method."],["The `getResumeRequest()` method is utilized when a stream needs to restart and generates a request for a new stream that will pick up where the previous one left off."],["`processResponse()` is called after a response is successfully received to update the class's internal state and alter incoming responses, if necessary, and all messages, including from the first attempt, will pass through this method."],["The document provides a detailed list of versions, ranging from 2.63.1 (latest) down to 2.7.1, and includes links to the documentation for each specific version, alongside a display of inherited members and type parameters."]]],[]]