Skip to main content

ConfigRepository

Trait ConfigRepository 

Source
pub trait ConfigRepository: Send + Sync {
    // Required methods
    fn create<'life0, 'life1, 'async_trait>(
        &'life0 self,
        config: &'life1 StoredBotConfig,
    ) -> Pin<Box<dyn Future<Output = Result<(), RepositoryError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn get_by_id<'life0, 'async_trait>(
        &'life0 self,
        id: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<StoredBotConfig, RepositoryError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_latest_for_bot<'life0, 'async_trait>(
        &'life0 self,
        bot_id: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<Option<StoredBotConfig>, RepositoryError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn list_by_bot<'life0, 'async_trait>(
        &'life0 self,
        bot_id: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<StoredBotConfig>, RepositoryError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_next_version_atomic<'life0, 'async_trait>(
        &'life0 self,
        bot_id: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<i32, RepositoryError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn create<'life0, 'life1, 'async_trait>( &'life0 self, config: &'life1 StoredBotConfig, ) -> Pin<Box<dyn Future<Output = Result<(), RepositoryError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source

fn get_by_id<'life0, 'async_trait>( &'life0 self, id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<StoredBotConfig, RepositoryError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn get_latest_for_bot<'life0, 'async_trait>( &'life0 self, bot_id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<Option<StoredBotConfig>, RepositoryError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn list_by_bot<'life0, 'async_trait>( &'life0 self, bot_id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<Vec<StoredBotConfig>, RepositoryError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn get_next_version_atomic<'life0, 'async_trait>( &'life0 self, bot_id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<i32, RepositoryError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get next config version atomically using advisory locks CRIT-007: Prevents duplicate version numbers under concurrent updates

Implementors§