Http gracefull shutdown support (#393)

This commit is contained in:
Nikolay Kim 2024-08-12 20:07:26 +05:00 committed by GitHub
parent f574916e15
commit 5f20ee2be5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 377 additions and 45 deletions

View file

@ -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

View file

@ -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"]

View file

@ -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 {