pub trait HandleNotifications {
fn handle_notifications(
&mut self,
notifications: Arc<dyn ChainNotifications>
) -> Box<dyn Handler>;
}Required Methods§
sourcefn handle_notifications(
&mut self,
notifications: Arc<dyn ChainNotifications>
) -> Box<dyn Handler>
fn handle_notifications(
&mut self,
notifications: Arc<dyn ChainNotifications>
) -> Box<dyn Handler>
| Register handler for notifications. |