pub trait VirtualBus: Debug + Send + Sync + 'static {
    fn new_spawn(&self) -> SpawnOptions;
    fn listen(
        &self
    ) -> Result<Box<dyn VirtualBusListener + Sync + 'static, Global>, BusError>; }

Required Methods§

Starts a new WAPM sub process

Creates a listener thats used to receive BUS commands

Implementors§