Trait futuresdr::runtime::SyncKernel[][src]

pub trait SyncKernel: Send {
    fn work(
        &mut self,
        _io: &mut WorkIo,
        _s: &mut StreamIo,
        _m: &mut MessageIo<Self>,
        _b: &mut BlockMeta
    ) -> Result<()> { ... }
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