mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Updates
This commit is contained in:
parent
a9c0348b98
commit
2939a55569
6 changed files with 8 additions and 7 deletions
|
@ -1,8 +1,8 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [2.5.0] - 2025-03-10
|
## [2.5.0] - 2025-03-12
|
||||||
|
|
||||||
* Add ntex-runtime support
|
* Add neon runtime support
|
||||||
|
|
||||||
* Drop glommio support
|
* Drop glommio support
|
||||||
|
|
||||||
|
|
|
@ -54,8 +54,8 @@ struct StreamOpsInner<T> {
|
||||||
}
|
}
|
||||||
|
|
||||||
struct StreamOpsStorage<T> {
|
struct StreamOpsStorage<T> {
|
||||||
streams: Slab<StreamItem<T>>,
|
|
||||||
ops: Slab<Operation>,
|
ops: Slab<Operation>,
|
||||||
|
streams: Slab<StreamItem<T>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: AsRawFd + 'static> StreamOps<T> {
|
impl<T: AsRawFd + 'static> StreamOps<T> {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [0.4.26] - 2025-03-xx
|
## [0.4.26] - 2025-03-12
|
||||||
|
|
||||||
* Add "neon" runtime support
|
* Add "neon" runtime support
|
||||||
|
|
||||||
|
|
|
@ -154,6 +154,7 @@ impl Arbiter {
|
||||||
.try_send(ArbiterCommand::Execute(Box::pin(future)));
|
.try_send(ArbiterCommand::Execute(Box::pin(future)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[rustfmt::skip]
|
||||||
/// Send a function to the Arbiter's thread. This function will be executed asynchronously.
|
/// Send a function to the Arbiter's thread. This function will be executed asynchronously.
|
||||||
/// A future is created, and when resolved will contain the result of the function sent
|
/// A future is created, and when resolved will contain the result of the function sent
|
||||||
/// to the Arbiters thread.
|
/// to the Arbiters thread.
|
||||||
|
|
|
@ -259,7 +259,7 @@ mod neon {
|
||||||
/// completes.
|
/// completes.
|
||||||
pub fn block_on<F: Future<Output = ()>>(fut: F) {
|
pub fn block_on<F: Future<Output = ()>>(fut: F) {
|
||||||
log::info!(
|
log::info!(
|
||||||
"Starting compio runtime, driver {:?}",
|
"Starting neon runtime, driver {:?}",
|
||||||
ntex_neon::driver::DriverType::current()
|
ntex_neon::driver::DriverType::current()
|
||||||
);
|
);
|
||||||
let rt = Runtime::new().unwrap();
|
let rt = Runtime::new().unwrap();
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [2.12.0] - 2025-03-10
|
## [2.12.0] - 2025-03-12
|
||||||
|
|
||||||
* Add "ntex-runtime" support
|
* Add neon runtime support
|
||||||
|
|
||||||
* Drop glommio support
|
* Drop glommio support
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue