pub trait HandleNotifyNumConnectionsChanged {
    // Required method
    fn handle_notify_num_connections_changed(
        &mut self,
        fn_: NodeNotifyNumConnectionsChangedFn
    ) -> Box<dyn Handler>;
}

Required Methods§

source

fn handle_notify_num_connections_changed( &mut self, fn_: NodeNotifyNumConnectionsChangedFn ) -> Box<dyn Handler>

| Register handler for number of connections | changed messages. |

Implementors§