pub trait Application: Send + Sync + Consensus + Mempool + Snapshot + Query {
    fn dispatch<'life0, 'async_trait>(
        &'life0 self,
        request: Request
    ) -> Pin<Box<dyn Future<Output = Response> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
, { ... } }
Expand description

Async version application for ABCI.

Provided Methods

Implementors