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>(
std::chrono::milliseconds(200),
std::chrono::seconds(45),
2.0)
.clone());
connection,
std::chrono::minutes(5))
.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<
return std::make_unique<CustomIdempotencyPolicy>(*this);
}
};
Definition: schema_connection_idempotency_policy.h:33
virtual std::unique_ptr< SchemaServiceConnectionIdempotencyPolicy > clone() const
Create a new copy of this object.