pub trait ThreadedSocketServiceExt: 'static {
    fn max_threads(&self) -> i32;
    fn connect_run<F: Fn(&Self, &SocketConnection, Option<&Object>) -> bool + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

Implementors