mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
No runtime compatibility (#409)
This commit is contained in:
parent
4924ecf472
commit
d87d9b2139
4 changed files with 62 additions and 38 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.4.15] - 2024-08-30
|
||||||
|
|
||||||
|
* No runtime compatibility
|
||||||
|
|
||||||
## [0.4.14] - 2024-08-29
|
## [0.4.14] - 2024-08-29
|
||||||
|
|
||||||
* Add `compio` runtime support
|
* Add `compio` runtime support
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-rt"
|
name = "ntex-rt"
|
||||||
version = "0.4.14"
|
version = "0.4.15"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "ntex runtime"
|
description = "ntex runtime"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -214,6 +214,16 @@ mod compio {
|
||||||
fut: Option<comp_io::runtime::JoinHandle<T>>,
|
fut: Option<comp_io::runtime::JoinHandle<T>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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> {
|
impl<T> Drop for JoinHandle<T> {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.fut.take().unwrap().detach();
|
self.fut.take().unwrap().detach();
|
||||||
|
@ -473,39 +483,58 @@ pub use self::glommio::*;
|
||||||
))]
|
))]
|
||||||
pub use self::compio::*;
|
pub use self::compio::*;
|
||||||
|
|
||||||
/// Runs the provided future, blocking the current thread until the future
|
#[allow(dead_code)]
|
||||||
/// completes.
|
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
not(feature = "tokio"),
|
not(feature = "tokio"),
|
||||||
not(feature = "async-std"),
|
not(feature = "async-std"),
|
||||||
not(feature = "compio"),
|
not(feature = "compio"),
|
||||||
not(feature = "glommio")
|
not(feature = "glommio")
|
||||||
))]
|
))]
|
||||||
pub fn block_on<F: std::future::Future<Output = ()>>(_: F) {
|
mod no_rt {
|
||||||
panic!("async runtime is not configured");
|
use std::task::{Context, Poll};
|
||||||
}
|
use std::{fmt, future::Future, marker::PhantomData, pin::Pin};
|
||||||
|
|
||||||
#[cfg(all(
|
/// Runs the provided future, blocking the current thread until the future
|
||||||
not(feature = "tokio"),
|
/// completes.
|
||||||
not(feature = "async-std"),
|
pub fn block_on<F: Future<Output = ()>>(_: F) {
|
||||||
not(feature = "compio"),
|
panic!("async runtime is not configured");
|
||||||
not(feature = "glommio")
|
}
|
||||||
))]
|
|
||||||
pub fn spawn<F>(_: F) -> std::pin::Pin<Box<dyn std::future::Future<Output = F::Output>>>
|
|
||||||
where
|
|
||||||
F: std::future::Future + 'static,
|
|
||||||
{
|
|
||||||
unimplemented!()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(all(
|
pub fn spawn<F>(_: F) -> JoinHandle<F::Output>
|
||||||
not(feature = "tokio"),
|
where
|
||||||
not(feature = "async-std"),
|
F: Future + 'static,
|
||||||
not(feature = "compio"),
|
{
|
||||||
not(feature = "glommio")
|
unimplemented!()
|
||||||
))]
|
}
|
||||||
mod spawn_blocking_stub {
|
|
||||||
use std::fmt;
|
pub fn spawn_blocking<F, T>(_: F) -> JoinHandle<T>
|
||||||
|
where
|
||||||
|
F: FnOnce() -> T + Send + Sync + 'static,
|
||||||
|
T: Send + 'static,
|
||||||
|
{
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Blocking operation completion future. It resolves with results
|
||||||
|
/// of blocking function execution.
|
||||||
|
#[allow(clippy::type_complexity)]
|
||||||
|
pub struct JoinHandle<T> {
|
||||||
|
t: PhantomData<T>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T> JoinHandle<T> {
|
||||||
|
pub fn is_finished(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T> Future for JoinHandle<T> {
|
||||||
|
type Output = Result<T, JoinError>;
|
||||||
|
|
||||||
|
fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone)]
|
#[derive(Debug, Copy, Clone)]
|
||||||
pub struct JoinError;
|
pub struct JoinError;
|
||||||
|
@ -517,21 +546,12 @@ mod spawn_blocking_stub {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl std::error::Error for JoinError {}
|
impl std::error::Error for JoinError {}
|
||||||
|
|
||||||
pub fn spawn_blocking<F, T>(
|
|
||||||
_: F,
|
|
||||||
) -> std::pin::Pin<Box<dyn std::future::Future<Output = Result<T, JoinError>>>>
|
|
||||||
where
|
|
||||||
F: FnOnce() -> T + Send + 'static,
|
|
||||||
T: Send + 'static,
|
|
||||||
{
|
|
||||||
unimplemented!()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
not(feature = "tokio"),
|
not(feature = "tokio"),
|
||||||
not(feature = "async-std"),
|
not(feature = "async-std"),
|
||||||
not(feature = "compio"),
|
not(feature = "compio"),
|
||||||
not(feature = "glommio")
|
not(feature = "glommio")
|
||||||
))]
|
))]
|
||||||
pub use self::spawn_blocking_stub::*;
|
pub use self::no_rt::*;
|
||||||
|
|
|
@ -67,7 +67,7 @@ ntex-util = "2"
|
||||||
ntex-bytes = "0.1.27"
|
ntex-bytes = "0.1.27"
|
||||||
ntex-server = "2.3"
|
ntex-server = "2.3"
|
||||||
ntex-h2 = "1.1"
|
ntex-h2 = "1.1"
|
||||||
ntex-rt = "0.4.14"
|
ntex-rt = "0.4.15"
|
||||||
ntex-io = "2.3"
|
ntex-io = "2.3"
|
||||||
ntex-net = "2.1"
|
ntex-net = "2.1"
|
||||||
ntex-tls = "2.1"
|
ntex-tls = "2.1"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue