mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Http gracefull shutdown support (#393)
This commit is contained in:
parent
f574916e15
commit
5f20ee2be5
13 changed files with 377 additions and 45 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.2.0] - 2024-08-12
|
||||
|
||||
* Allow to notify dispatcher from IoRef
|
||||
|
||||
## [2.1.0] - 2024-07-30
|
||||
|
||||
* Optimize `Io` layout
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-io"
|
||||
version = "2.1.0"
|
||||
version = "2.2.0"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Utilities for encoding and decoding frames"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
|
|
@ -217,17 +217,24 @@ impl IoRef {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
/// current timer handle
|
||||
pub fn timer_handle(&self) -> timer::TimerHandle {
|
||||
self.0.timeout.get()
|
||||
/// Wakeup dispatcher
|
||||
pub fn notify_dispatcher(&self) {
|
||||
self.0.dispatch_task.wake();
|
||||
log::trace!("{}: Timer, notify dispatcher", self.tag());
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// wakeup dispatcher and send keep-alive error
|
||||
/// Wakeup dispatcher and send keep-alive error
|
||||
pub fn notify_timeout(&self) {
|
||||
self.0.notify_timeout()
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// current timer handle
|
||||
pub fn timer_handle(&self) -> timer::TimerHandle {
|
||||
self.0.timeout.get()
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Start timer
|
||||
pub fn start_timer(&self, timeout: Seconds) -> timer::TimerHandle {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue