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

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

auto options =
.set<google::cloud::dialogflow_es::
IntentsConnectionIdempotencyPolicyOption>(
CustomIdempotencyPolicy().clone())
.set<google::cloud::dialogflow_es::IntentsRetryPolicyOption>(
3)
.clone())
.set<google::cloud::dialogflow_es::IntentsBackoffPolicyOption>(
/*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::IntentsRetryPolicyOption>(
// google::cloud::dialogflow_es::IntentsLimitedErrorCountRetryPolicy(10).clone()));
Options & set(ValueTypeT< T > v)
Service for managing Intents.
Definition: intents_client.h:65
std::shared_ptr< IntentsConnection > MakeIntentsConnection(std::string const &location, Options options={})
A factory function to construct an object of type IntentsConnection.
::google::cloud::internal::LimitedTimeRetryPolicy< dialogflow_es_internal::IntentsRetryTraits > IntentsLimitedTimeRetryPolicy
Definition: intents_connection.h:47
::google::cloud::internal::LimitedErrorCountRetryPolicy< dialogflow_es_internal::IntentsRetryTraits > IntentsLimitedErrorCountRetryPolicy
Definition: intents_connection.h:51
google::cloud::internal::ExponentialBackoffPolicy ExponentialBackoffPolicy
Use with google::cloud::Options to configure the retry policy.
Definition: intents_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: intents_connection_idempotency_policy.h:33
virtual std::unique_ptr< IntentsConnectionIdempotencyPolicy > clone() const
Create a new copy of this object.