Update doc

This commit is contained in:
Nikolay Kim 2023-11-02 16:18:57 +06:00
parent e4c58fa363
commit ea26d9ef53
4 changed files with 29 additions and 15 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.3.4] - 2023-11-xx
## [0.3.3] - 2023-09-11
* Add missing fmt::Debug impls

View file

@ -375,7 +375,7 @@ impl<F> Io<F> {
}
#[inline]
/// Encode item, send to a peer
/// Encode item, send to the peer. Fully flush write buffer.
pub async fn send<U>(
&self,
item: U::Item,
@ -856,6 +856,7 @@ impl Future for OnDisconnect {
#[cfg(test)]
mod tests {
use ntex_codec::BytesCodec;
use ntex_bytes::Bytes;
use super::*;
use crate::testing::IoTest;
@ -881,4 +882,17 @@ mod tests {
let item = server.recv(&BytesCodec).await.ok().unwrap().unwrap();
assert_eq!(item, "GET /test HTTP/1");
}
#[ntex::test]
async fn test_send() {
let (client, server) = IoTest::create();
client.remote_buffer_cap(1024);
let server = Io::new(server);
assert!(server.eq(&server));
server.send(Bytes::from_static(b"GET /test HTTP/1"), &BytesCodec).await.ok().unwrap();
let item = client.read_any();
assert_eq!(item, "GET /test HTTP/1");
}
}

View file

@ -53,7 +53,7 @@ impl ReadContext {
} else {
inner.insert_flags(Flags::RD_READY);
}
log::trace!("new {} bytes available, wakeup dispatcher", nbytes,);
log::trace!("new {} bytes available, wakeup dispatcher", nbytes);
inner.dispatch_task.wake();
} else if buf_full {
// read task is paused because of read back-pressure
@ -134,16 +134,16 @@ impl WriteContext {
// if write buffer is smaller than high watermark value, turn off back-pressure
let mut flags = inner.flags.get();
let mut wake_dispatcher = false;
if flags.contains(Flags::WR_BACKPRESSURE)
if len == 0 {
if flags.intersects(Flags::WR_WAIT | Flags::WR_BACKPRESSURE) {
flags.remove(Flags::WR_WAIT | Flags::WR_BACKPRESSURE);
inner.dispatch_task.wake();
}
} else if flags.contains(Flags::WR_BACKPRESSURE)
&& len < inner.pool.get().write_params_high() << 1
{
flags.remove(Flags::WR_BACKPRESSURE);
wake_dispatcher = true;
}
if flags.contains(Flags::WR_WAIT) && len == 0 {
flags.remove(Flags::WR_WAIT);
wake_dispatcher = true;
inner.dispatch_task.wake();
}
match result {
@ -153,10 +153,6 @@ impl WriteContext {
}
inner.flags.set(flags);
if wake_dispatcher {
inner.dispatch_task.wake();
}
result
}

View file

@ -54,7 +54,7 @@ ntex-http = "0.1.10"
ntex-router = "0.5.2"
ntex-service = "1.2.6"
ntex-macros = "0.1.3"
ntex-util = "0.3.2"
ntex-util = "0.3.3"
ntex-bytes = "0.1.19"
ntex-h2 = "0.4.3"
ntex-rt = "0.4.9"
@ -70,7 +70,7 @@ base64 = "0.21"
bitflags = "2.4"
log = "0.4"
nanorand = { version = "0.7.0", default-features = false, features = ["std", "wyrand"] }
polling = "3.2.0"
polling = "3.3"
pin-project-lite = "0.2"
regex = { version = "1.10.1", default-features = false, features = ["std"] }
sha-1 = "0.10"