Skip to main content

RuntimeSessionStore

Trait RuntimeSessionStore 

Source
pub trait RuntimeSessionStore:
    SessionStore
    + SessionMutator
    + Send
    + Sync {
    // Required method
    fn add_session<'life0, 'async_trait>(
        &'life0 self,
        session: Session,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Session store contract for runtime seeding, lookup, and mutation.

Required Methods§

Source

fn add_session<'life0, 'async_trait>( &'life0 self, session: Session, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Insert or replace a session definition.

Implementors§