mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Server::build() method (#315)
This commit is contained in:
parent
baabcff4a6
commit
20a53c3fd1
9 changed files with 11 additions and 137 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.1.0] - 2024-03-24
|
||||
## [1.0.1] - 2024-03-24
|
||||
|
||||
* Re-add Server::build() method
|
||||
|
||||
## [1.0.0] - 2024-03-24
|
||||
|
||||
* Release
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-server"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Server for ntex framework"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue