This shows how to override the retry policies for dialogflow_cx::WebhooksClient:
auto options =
.
set<google::cloud::dialogflow_cx::
WebhooksConnectionIdempotencyPolicyOption>(
CustomIdempotencyPolicy().clone())
.set<google::cloud::dialogflow_cx::WebhooksRetryPolicyOption>(
WebhooksLimitedErrorCountRetryPolicy(3)
.clone())
.set<google::cloud::dialogflow_cx::WebhooksBackoffPolicyOption>(
std::chrono::milliseconds(200),
std::chrono::seconds(45),
2.0)
.clone());
auto connection =
connection,
std::chrono::minutes(5))
.clone()));
Options & set(ValueTypeT< T > v)
Service for managing Webhooks.
Definition: webhooks_client.h:64
Definition: agents_client.h:33
::google::cloud::internal::LimitedTimeRetryPolicy< dialogflow_cx_internal::WebhooksRetryTraits > WebhooksLimitedTimeRetryPolicy
Definition: webhooks_connection.h:43
std::shared_ptr< WebhooksConnection > MakeWebhooksConnection(std::string const &location, Options options={})
A factory function to construct an object of type WebhooksConnection.
google::cloud::internal::ExponentialBackoffPolicy ExponentialBackoffPolicy
Use with google::cloud::Options to configure the retry policy.
Definition: webhooks_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: webhooks_connection_idempotency_policy.h:33
virtual std::unique_ptr< WebhooksConnectionIdempotencyPolicy > clone() const
Create a new copy of this object.