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

Required Methods

Implementors