Set how long to wait before considering the stream orphaned by the user and closing it.
java.time.Duration#ZERO disables the check for abandoned streams.
When using the method, make sure that the RetrySettings are complete. For example,
the following code will disable retries because the retry delay is not set:
[[["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."],[[["The webpage provides documentation for `ServerStreamingCallSettings.Builder` in the Google API Client Libraries for Java, with the latest version being 2.63.1."],["It details the inheritance hierarchy, showing that `ServerStreamingCallSettings.Builder` extends `StreamingCallSettings.Builder` and ultimately `java.lang.Object`."],["The documentation lists various methods, including `build()`, `getIdleTimeoutDuration()`, `getResumptionStrategy()`, and `getRetrySettings()`, among others, that are used for configuring server-streaming settings."],["Methods with `Duration` in their name allow setting time limits, such as `setIdleTimeoutDuration(Duration idleTimeout)` to manage idle streams, and `setWaitTimeoutDuration(Duration waitTimeout)` to control how long to wait for server messages."],["The page also highlights how to set retry settings, including the use of `retrySettings()`, `setRetrySettings(RetrySettings retrySettings)` and `setRetryableCodes()` to control how the client handles retryable errors."]]],[]]