Dialogflow API C++ Client 2.13.0
A C++ Client Library for the Dialogflow API
Loading...
Searching...
No Matches
Override dialogflow_es::DocumentsClient Retry Policies

This shows how to override the retry policies for dialogflow_es::DocumentsClient:

auto options =
.set<google::cloud::dialogflow_es::
DocumentsConnectionIdempotencyPolicyOption>(
CustomIdempotencyPolicy().clone())
.set<google::cloud::dialogflow_es::DocumentsRetryPolicyOption>(
DocumentsLimitedErrorCountRetryPolicy(3)
.clone())
.set<google::cloud::dialogflow_es::DocumentsBackoffPolicyOption>(
/*initial_delay=*/std::chrono::milliseconds(200),
/*maximum_delay=*/std::chrono::seconds(45),
/*scaling=*/2.0)
.clone());
auto connection =
// 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::dialogflow_es::DocumentsRetryPolicyOption>(
// google::cloud::dialogflow_es::DocumentsLimitedErrorCountRetryPolicy(10).clone()));
Options & set(ValueTypeT< T > v)
Service for managing knowledge Documents.
Definition: documents_client.h:67
Definition: agents_client.h:33
::google::cloud::internal::LimitedTimeRetryPolicy< dialogflow_es_internal::DocumentsRetryTraits > DocumentsLimitedTimeRetryPolicy
Definition: documents_connection.h:46
std::shared_ptr< DocumentsConnection > MakeDocumentsConnection(std::string const &location, Options options={})
A factory function to construct an object of type DocumentsConnection.
google::cloud::internal::ExponentialBackoffPolicy ExponentialBackoffPolicy
Use with google::cloud::Options to configure the retry policy.
Definition: documents_options.h:39

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

class CustomIdempotencyPolicy : public google::cloud::dialogflow_es::
DocumentsConnectionIdempotencyPolicy {
public:
~CustomIdempotencyPolicy() override = default;
std::unique_ptr<
clone() const override {
return std::make_unique<CustomIdempotencyPolicy>(*this);
}
// Override inherited functions to define as needed.
};
Definition: documents_connection_idempotency_policy.h:33