pub trait TimestampPersistence<T> {
    // Required method
    fn persist_timestamp<'life0, 'async_trait>(
        &'life0 self,
        timestamp: T
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Provides persistence of timestamps for CatalogTimestampOracle.

Required Methods§

source

fn persist_timestamp<'life0, 'async_trait>( &'life0 self, timestamp: T ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Persist new global timestamp to disk.

Implementors§