pub trait VirtualBusInvokable: Debug + Send + Sync + 'static {
    fn invoke(
        &self,
        topic: String,
        format: BusDataFormat,
        buf: &[u8]
    ) -> Result<Box<dyn VirtualBusInvocation + Sync>>; }

Required Methods§

Invokes a service within this instance

Implementors§