pub trait ListenerNotifier {
    // Required method
    fn new_incoming_connections(&mut self, num_ready: usize);
}
Expand description

A notifier used to tell Bindings about new pending connections for a single socket.

Required Methods§

source

fn new_incoming_connections(&mut self, num_ready: usize)

When the ready queue length has changed, signal to the Bindings.

Implementors§