Trait futuresdr::runtime::AsyncKernel[][src]

pub trait AsyncKernel: Send {
    fn work<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
        &'life0 mut self,
        _io: &'life1 mut WorkIo,
        _s: &'life2 mut StreamIo,
        _m: &'life3 mut MessageIo<Self>,
        _b: &'life4 mut BlockMeta
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        'life4: 'async_trait,
        Self: 'async_trait
, { ... }
fn init<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 mut self,
        _s: &'life1 mut StreamIo,
        _m: &'life2 mut MessageIo<Self>,
        _b: &'life3 mut BlockMeta
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        Self: 'async_trait
, { ... }
fn deinit<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 mut self,
        _s: &'life1 mut StreamIo,
        _m: &'life2 mut MessageIo<Self>,
        _b: &'life3 mut BlockMeta
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        Self: 'async_trait
, { ... } }

Provided methods

Implementors