pub trait RocketMQTokioRunnable: Sync + 'static {
    // Required method
    async fn run(&mut self);
}

Required Methods§

source

async fn run(&mut self)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<TraitVariantBlanketType: TokioRunnable> RocketMQTokioRunnable for TraitVariantBlanketType