A retry policy for NotificationChannelServiceConnection
based on elapsed time.
This policy stops retrying if:
- An RPC returns a non-transient error.
- The elapsed time in the retry loop exceeds a prescribed duration.
In this class the following status codes are treated as transient errors:
Constructors
NotificationChannelServiceLimitedTimeRetryPolicy(std::chrono::duration< DurationRep, DurationPeriod >)
Constructor given a std::chrono::duration<>
object.
See Also
https://en.cppreference.com/w/cpp/chrono/duration for more information about std::chrono::duration
.
Parameters | |
---|---|
Name | Description |
maximum_duration |
std::chrono::duration< DurationRep, DurationPeriod >
the maximum time allowed before the policy expires. While the application can express this time in any units they desire, the class truncates to milliseconds. |
typename DurationRep |
a placeholder to match the |
typename DurationPeriod |
a placeholder to match the |
NotificationChannelServiceLimitedTimeRetryPolicy(NotificationChannelServiceLimitedTimeRetryPolicy &&)
Parameter | |
---|---|
Name | Description |
rhs |
NotificationChannelServiceLimitedTimeRetryPolicy &&
|
NotificationChannelServiceLimitedTimeRetryPolicy(NotificationChannelServiceLimitedTimeRetryPolicy const &)
Parameter | |
---|---|
Name | Description |
rhs |
NotificationChannelServiceLimitedTimeRetryPolicy const &
|
Functions
maximum_duration() const
Returns | |
---|---|
Type | Description |
std::chrono::milliseconds |
virtual OnFailure(Status const &)
Parameter | |
---|---|
Name | Description |