mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Tune compio integration (#412)
This commit is contained in:
parent
432791356c
commit
8a3a8f1df8
6 changed files with 38 additions and 25 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.3.1] - 2024-09-05
|
||||
|
||||
* Tune async io tasks support
|
||||
|
||||
## [2.3.0] - 2024-08-28
|
||||
|
||||
* Extend io task contexts, for "compio" runtime compatibility
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-io"
|
||||
version = "2.3.0"
|
||||
version = "2.3.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Utilities for encoding and decoding frames"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
use std::{future::poll_fn, future::Future, io, task::Context, task::Poll};
|
||||
|
||||
use ntex_bytes::{BufMut, BytesVec, PoolRef};
|
||||
use ntex_util::task;
|
||||
|
||||
use crate::{Flags, IoRef, ReadStatus, WriteStatus};
|
||||
|
||||
|
@ -157,11 +156,11 @@ impl ReadContext {
|
|||
{
|
||||
let inner = &self.0 .0;
|
||||
|
||||
// we already pushed new data to read buffer,
|
||||
// we have to wait for dispatcher to read data from buffer
|
||||
if inner.flags.get().is_read_buf_ready() {
|
||||
task::yield_to().await;
|
||||
}
|
||||
// // we already pushed new data to read buffer,
|
||||
// // we have to wait for dispatcher to read data from buffer
|
||||
// if inner.flags.get().is_read_buf_ready() {
|
||||
// ntex_util::task::yield_to().await;
|
||||
// }
|
||||
|
||||
let mut buf = if inner.flags.get().is_read_buf_ready() {
|
||||
// read buffer is still not read by dispatcher
|
||||
|
@ -175,9 +174,9 @@ impl ReadContext {
|
|||
};
|
||||
|
||||
// make sure we've got room
|
||||
let remaining = buf.remaining_mut();
|
||||
let (hw, lw) = self.0.memory_pool().read_params().unpack();
|
||||
if remaining < lw {
|
||||
let remaining = buf.remaining_mut();
|
||||
if remaining <= lw {
|
||||
buf.reserve(hw - remaining);
|
||||
}
|
||||
let total = buf.len();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue