pub trait EventListenerSyncRoutine<P, R>: Send + Sync + 'staticwhere
    P: Send + Sync + 'static,
    R: 'static,
{ fn call(&self, param: &P) -> BuckyResult<R>; }

Required Methods

Implementors