Update neon apis (#520)

This commit is contained in:
Nikolay Kim 2025-03-13 16:17:19 +05:00 committed by GitHub
parent ecfc2936b5
commit cfc32ed74f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 17 additions and 25 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-rt"
version = "0.4.27"
version = "0.4.28"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex runtime"
keywords = ["network", "framework", "async", "futures"]
@ -42,7 +42,7 @@ tok-io = { version = "1", package = "tokio", default-features = false, features
"net",
], optional = true }
ntex-neon = { version = "0.1", optional = true }
ntex-neon = { version = "0.1.1", optional = true }
[dev-dependencies]
env_logger = "0.11"

View file

@ -258,11 +258,12 @@ mod neon {
/// Runs the provided future, blocking the current thread until the future
/// completes.
pub fn block_on<F: Future<Output = ()>>(fut: F) {
let rt = Runtime::new().unwrap();
log::info!(
"Starting neon runtime, driver {:?}",
ntex_neon::driver::DriverType::current()
rt.driver().tp().name()
);
let rt = Runtime::new().unwrap();
rt.block_on(fut);
}
@ -376,17 +377,7 @@ mod neon {
impl<T> JoinHandle<T> {
pub fn is_finished(&self) -> bool {
if let Some(hnd) = &self.fut {
hnd.is_finished()
} else {
true
}
}
}
impl<T> Drop for JoinHandle<T> {
fn drop(&mut self) {
self.fut.take().unwrap().detach();
false
}
}
@ -396,7 +387,8 @@ mod neon {
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
Poll::Ready(
ready!(Pin::new(self.fut.as_mut().unwrap()).poll(cx))
.map_err(|_| JoinError),
.map_err(|_| JoinError)
.and_then(|result| result.map_err(|_| JoinError)),
)
}
}