pub trait HandleNotifications {
    // Required method
    fn handle_notifications(
        &mut self,
        notifications: Arc<dyn ChainNotifications>
    ) -> Box<dyn Handler>;
}

Required Methods§

source

fn handle_notifications( &mut self, notifications: Arc<dyn ChainNotifications> ) -> Box<dyn Handler>

| Register handler for notifications. |

Implementors§