Stay organized with collections Save and categorize content based on your preferences.
This shows how to override the retry policies for speech_v1::SpeechClient:
auto options =
google::cloud::Options{}
.set<google::cloud::speech_v1::
SpeechConnectionIdempotencyPolicyOption>(
CustomIdempotencyPolicy().clone())
.set<google::cloud::speech_v1::SpeechRetryPolicyOption>(
google::cloud::speech_v1::SpeechLimitedErrorCountRetryPolicy(3)
.clone())
.set<google::cloud::speech_v1::SpeechBackoffPolicyOption>(
google::cloud::ExponentialBackoffPolicy(
/*initial_delay=*/std::chrono::milliseconds(200),
/*maximum_delay=*/std::chrono::seconds(45),
/*scaling=*/2.0)
.clone());
auto connection = google::cloud::speech_v1::MakeSpeechConnection(options);
// c1 and c2 share the same retry policies
auto c1 = google::cloud::speech_v1::SpeechClient(connection);
auto c2 = google::cloud::speech_v1::SpeechClient(connection);
// You can override any of the policies in a new client. This new client
// will share the policies from c1 (or c2) *except* for the retry policy.
auto c3 = google::cloud::speech_v1::SpeechClient(
connection,
google::cloud::Options{}
.set<google::cloud::speech_v1::SpeechRetryPolicyOption>(
google::cloud::speech_v1::SpeechLimitedTimeRetryPolicy(
std::chrono::minutes(5))
.clone()));
// You can also override the policies in a single call:
// c3.SomeRpc(..., google::cloud::Options{}
// .set<google::cloud::speech_v1::SpeechRetryPolicyOption>(
// google::cloud::speech_v1::SpeechLimitedErrorCountRetryPolicy(10).clone()));
Assuming you have created a custom idempotency policy. Such as:
class CustomIdempotencyPolicy
: public google::cloud::speech_v1::SpeechConnectionIdempotencyPolicy {
public:
~CustomIdempotencyPolicy() override = default;
std::unique_ptr<google::cloud::speech_v1::SpeechConnectionIdempotencyPolicy>
clone() const override {
return std::make_unique<CustomIdempotencyPolicy>(*this);
}
// Override inherited functions to define as needed.
};
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-14 UTC.
[[["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-08-14 UTC."],[[["This webpage provides documentation for various versions of the speech_v1::SpeechClient, ranging from version 2.11.0 to the latest release candidate 2.37.0-rc."],["It demonstrates how to override the default retry policies for speech_v1::SpeechClient, including setting custom retry policies and backoff policies."],["Multiple SpeechClient instances can share the same retry policies, such as `c1` and `c2`, but you can also create new clients, such as `c3`, that share policies from other instances, except for the retry policy which can be unique to that client."],["The content outlines the use of `google::cloud::Options` to customize the SpeechClient's idempotency, retry, and backoff policies, allowing fine-grained control over error handling."],["The provided code explains how to implement a custom idempotency policy by creating a `CustomIdempotencyPolicy` class that inherits from `google::cloud::speech_v1::SpeechConnectionIdempotencyPolicy`, allowing for tailored idempotency behavior."]]],[]]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4