[][src]Trait dynomite::retry::Retries

pub trait Retries<D> where
    D: DynamoDb + 'static, 
{ fn with_retries(self, policy: Policy) -> RetryingDynamoDb<D>; }

An interface for adapting a DynamoDb impl to a RetryingDynamoDb impl

Required methods

fn with_retries(self, policy: Policy) -> RetryingDynamoDb<D>

Consumes a DynamoDb impl and produces a DynamoDb which retries its operations when appropriate

Loading content...

Implementors

impl<D> Retries<D> for D where
    D: DynamoDb + 'static, 
[src]

Loading content...