pub trait IdempotencyStore:
Send
+ Sync
+ Debug {
// Required methods
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 IdempotencyKey,
) -> Pin<Box<dyn Future<Output = Result<Option<IdempotencyRecord>, IdempotencyError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn begin<'life0, 'async_trait>(
&'life0 self,
key: IdempotencyKey,
fingerprint: RequestFingerprint,
now: DateTime<Utc>,
stale_after: TimeDelta,
) -> Pin<Box<dyn Future<Output = Result<BeginOutcome, IdempotencyError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn complete<'life0, 'async_trait>(
&'life0 self,
lease: IdempotencyLease,
response: Value,
completed_at: DateTime<Utc>,
) -> Pin<Box<dyn Future<Output = Result<IdempotencyRecord, IdempotencyError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn abort<'life0, 'life1, 'async_trait>(
&'life0 self,
lease: &'life1 IdempotencyLease,
) -> Pin<Box<dyn Future<Output = Result<bool, IdempotencyError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Required Methods§
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 IdempotencyKey,
) -> Pin<Box<dyn Future<Output = Result<Option<IdempotencyRecord>, IdempotencyError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Sourcefn begin<'life0, 'async_trait>(
&'life0 self,
key: IdempotencyKey,
fingerprint: RequestFingerprint,
now: DateTime<Utc>,
stale_after: TimeDelta,
) -> Pin<Box<dyn Future<Output = Result<BeginOutcome, IdempotencyError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn begin<'life0, 'async_trait>(
&'life0 self,
key: IdempotencyKey,
fingerprint: RequestFingerprint,
now: DateTime<Utc>,
stale_after: TimeDelta,
) -> Pin<Box<dyn Future<Output = Result<BeginOutcome, IdempotencyError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Atomically acquires an execution lease or returns the existing state.
Sourcefn complete<'life0, 'async_trait>(
&'life0 self,
lease: IdempotencyLease,
response: Value,
completed_at: DateTime<Utc>,
) -> Pin<Box<dyn Future<Output = Result<IdempotencyRecord, IdempotencyError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn complete<'life0, 'async_trait>(
&'life0 self,
lease: IdempotencyLease,
response: Value,
completed_at: DateTime<Utc>,
) -> Pin<Box<dyn Future<Output = Result<IdempotencyRecord, IdempotencyError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Atomically replaces the matching in-progress lease with a completed response.
Sourcefn abort<'life0, 'life1, 'async_trait>(
&'life0 self,
lease: &'life1 IdempotencyLease,
) -> Pin<Box<dyn Future<Output = Result<bool, IdempotencyError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn abort<'life0, 'life1, 'async_trait>(
&'life0 self,
lease: &'life1 IdempotencyLease,
) -> Pin<Box<dyn Future<Output = Result<bool, IdempotencyError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Releases only the matching in-progress lease after the application side effect failed.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".