Trait wasmcloud_interface_keyvalue::KeyValueReceiver[][src]

pub trait KeyValueReceiver: MessageDispatch + KeyValue {
    fn dispatch<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 self,
        ctx: &'life1 Context,
        message: &'life2 Message<'life3>
    ) -> Pin<Box<dyn Future<Output = RpcResult<Message<'_>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        Self: Sync + 'async_trait
, { ... } }
Expand description

KeyValueReceiver receives messages defined in the KeyValue service trait

Provided methods

Implementors