Server::build() method (#315)

This commit is contained in:
Nikolay Kim 2024-03-24 16:15:42 +01:00 committed by GitHub
parent baabcff4a6
commit 20a53c3fd1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 11 additions and 137 deletions

View file

@ -28,6 +28,11 @@ impl<T> Server<T> {
}
}
/// Start streaming server building process
pub fn build() -> crate::net::ServerBuilder {
crate::net::ServerBuilder::default()
}
pub(crate) fn signal(&self, sig: Signal) {
let _ = self.cmd.try_send(ServerCommand::Signal(sig));
}