Google Cloud Pub/Sub C++ Client 2.13.0
A C++ Client Library for Google Cloud Pub/Sub
Loading...
Searching...
No Matches
Override pubsub::SchemaServiceClient Retry Policies

This shows how to override the retry policies for pubsub::SchemaServiceClient:

auto options =
.set<google::cloud::pubsub::
SchemaServiceConnectionIdempotencyPolicyOption>(
CustomIdempotencyPolicy().clone())
.set<google::cloud::pubsub::SchemaServiceRetryPolicyOption>(
3)
.clone())
.set<google::cloud::pubsub::SchemaServiceBackoffPolicyOption>(
/*initial_delay=*/std::chrono::milliseconds(200),
/*maximum_delay=*/std::chrono::seconds(45),
/*scaling=*/2.0)
.clone());
// c1 and c2 share the same retry policies
// You can override any of the policies in a new client. This new client
// will share the policies from c1 (or c2) *except* from the retry policy.
connection,
std::chrono::minutes(5))
.clone()));
// You can also override the policies in a single call:
// c3.SomeRpc(..., google::cloud::Options{}
// .set<google::cloud::pubsub::SchemaServiceRetryPolicyOption>(
// google::cloud::pubsub::SchemaServiceLimitedErrorCountRetryPolicy(10).clone()));
Options & set(ValueTypeT< T > v)
Service for doing schema-related operations.
Definition: schema_client.h:61
std::shared_ptr< SchemaServiceConnection > MakeSchemaServiceConnection(Options options={})
A factory function to construct an object of type SchemaServiceConnection.
::google::cloud::internal::LimitedTimeRetryPolicy< pubsub_internal::SchemaServiceRetryTraits > SchemaServiceLimitedTimeRetryPolicy
Definition: schema_connection.h:43
::google::cloud::internal::LimitedErrorCountRetryPolicy< pubsub_internal::SchemaServiceRetryTraits > SchemaServiceLimitedErrorCountRetryPolicy
Definition: schema_connection.h:47
google::cloud::internal::ExponentialBackoffPolicy ExponentialBackoffPolicy
Use with google::cloud::Options to configure the retry policy.
Definition: schema_options.h:39

Assuming you have created a custom idempotency policy. Such as:

class CustomIdempotencyPolicy
public:
~CustomIdempotencyPolicy() override = default;
std::unique_ptr<
clone() const override {
return std::make_unique<CustomIdempotencyPolicy>(*this);
}
// Override inherited functions to define as needed.
};
Definition: schema_connection_idempotency_policy.h:33
virtual std::unique_ptr< SchemaServiceConnectionIdempotencyPolicy > clone() const
Create a new copy of this object.