mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add io-uring driver (#515)
This commit is contained in:
parent
47afec7351
commit
60a686b2f6
38 changed files with 1700 additions and 277 deletions
|
@ -1,6 +1,6 @@
|
|||
# Changes
|
||||
|
||||
## [0.4.26] - 2025-03-xx
|
||||
## [0.4.26] - 2025-03-12
|
||||
|
||||
* Add "neon" runtime support
|
||||
|
||||
|
|
|
@ -154,6 +154,7 @@ impl Arbiter {
|
|||
.try_send(ArbiterCommand::Execute(Box::pin(future)));
|
||||
}
|
||||
|
||||
#[rustfmt::skip]
|
||||
/// 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
|
||||
/// to the Arbiters thread.
|
||||
|
|
|
@ -259,7 +259,7 @@ mod neon {
|
|||
/// completes.
|
||||
pub fn block_on<F: Future<Output = ()>>(fut: F) {
|
||||
log::info!(
|
||||
"Starting compio runtime, driver {:?}",
|
||||
"Starting neon runtime, driver {:?}",
|
||||
ntex_neon::driver::DriverType::current()
|
||||
);
|
||||
let rt = Runtime::new().unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue