mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
rename write_ready to flush
This commit is contained in:
parent
7f1ff246f3
commit
8f4eb4e6bb
8 changed files with 46 additions and 20 deletions
|
@ -1,5 +1,11 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.1.0-b.3] - 2021-12-xx
|
||||||
|
|
||||||
|
* Rename .poll_write_ready() to .poll_flush()
|
||||||
|
|
||||||
|
* Rename .write_ready() to .flush()
|
||||||
|
|
||||||
## [0.1.0-b.2] - 2021-12-20
|
## [0.1.0-b.2] - 2021-12-20
|
||||||
|
|
||||||
* Removed `WriteRef` and `ReadRef`
|
* Removed `WriteRef` and `ReadRef`
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-io"
|
name = "ntex-io"
|
||||||
version = "0.1.0-b.2"
|
version = "0.1.0-b.3"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Utilities for encoding and decoding frames"
|
description = "Utilities for encoding and decoding frames"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -408,18 +408,25 @@ impl<F> Io<F> {
|
||||||
self.0 .0.write_task.wake();
|
self.0 .0.write_task.wake();
|
||||||
}
|
}
|
||||||
|
|
||||||
poll_fn(|cx| self.poll_write_ready(cx, true))
|
poll_fn(|cx| self.poll_flush(cx, true))
|
||||||
.await
|
.await
|
||||||
.map_err(Either::Right)?;
|
.map_err(Either::Right)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Wake write task and instruct to write data.
|
/// Wake write task and instruct to flush data.
|
||||||
///
|
///
|
||||||
/// This is async version of .poll_write_ready() method.
|
/// This is async version of .poll_flush() method.
|
||||||
|
pub async fn flush(&self, full: bool) -> Result<(), io::Error> {
|
||||||
|
poll_fn(|cx| self.poll_flush(cx, full)).await
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[deprecated]
|
||||||
|
#[inline]
|
||||||
pub async fn write_ready(&self, full: bool) -> Result<(), io::Error> {
|
pub async fn write_ready(&self, full: bool) -> Result<(), io::Error> {
|
||||||
poll_fn(|cx| self.poll_write_ready(cx, full)).await
|
poll_fn(|cx| self.poll_flush(cx, full)).await
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
|
@ -431,16 +438,12 @@ impl<F> Io<F> {
|
||||||
|
|
||||||
impl<F> Io<F> {
|
impl<F> Io<F> {
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Wake write task and instruct to write data.
|
/// Wake write task and instruct to flush data.
|
||||||
///
|
///
|
||||||
/// If full is true then wake up dispatcher when all data is flushed
|
/// If `full` is true then wake up dispatcher when all data is flushed
|
||||||
/// otherwise wake up when size of write buffer is lower than
|
/// otherwise wake up when size of write buffer is lower than
|
||||||
/// buffer max size.
|
/// buffer max size.
|
||||||
pub fn poll_write_ready(
|
pub fn poll_flush(&self, cx: &mut Context<'_>, full: bool) -> Poll<io::Result<()>> {
|
||||||
&self,
|
|
||||||
cx: &mut Context<'_>,
|
|
||||||
full: bool,
|
|
||||||
) -> Poll<io::Result<()>> {
|
|
||||||
// check io error
|
// check io error
|
||||||
if !self.0 .0.is_io_open() {
|
if !self.0 .0.is_io_open() {
|
||||||
return Poll::Ready(Err(self.0 .0.error.take().unwrap_or_else(|| {
|
return Poll::Ready(Err(self.0 .0.error.take().unwrap_or_else(|| {
|
||||||
|
@ -470,6 +473,17 @@ impl<F> Io<F> {
|
||||||
Poll::Ready(Ok(()))
|
Poll::Ready(Ok(()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[deprecated]
|
||||||
|
#[inline]
|
||||||
|
pub fn poll_write_ready(
|
||||||
|
&self,
|
||||||
|
cx: &mut Context<'_>,
|
||||||
|
full: bool,
|
||||||
|
) -> Poll<io::Result<()>> {
|
||||||
|
self.poll_flush(cx, full)
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Wake read task and instruct to read more data
|
/// Wake read task and instruct to read more data
|
||||||
///
|
///
|
||||||
|
|
|
@ -383,7 +383,7 @@ impl<F: Filter> AsyncWrite for Io<F> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
||||||
self.poll_write_ready(cx, false)
|
Io::poll_flush(&*self, cx, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn poll_shutdown(
|
fn poll_shutdown(
|
||||||
|
@ -428,7 +428,7 @@ impl AsyncWrite for IoBoxed {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
||||||
self.poll_write_ready(cx, false)
|
Self::poll_flush(&*self, cx, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn poll_shutdown(
|
fn poll_shutdown(
|
||||||
|
|
|
@ -350,7 +350,7 @@ fn handle_result<T, F>(
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
ssl::ErrorCode::WANT_WRITE => {
|
ssl::ErrorCode::WANT_WRITE => {
|
||||||
let _ = io.poll_write_ready(cx, true)?;
|
let _ = io.poll_flush(cx, true)?;
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
_ => Poll::Ready(Err(Box::new(e))),
|
_ => Poll::Ready(Err(Box::new(e))),
|
||||||
|
|
|
@ -46,7 +46,7 @@ ntex-macros = "0.1.3"
|
||||||
ntex-util = "0.1.3"
|
ntex-util = "0.1.3"
|
||||||
ntex-bytes = "0.1.8"
|
ntex-bytes = "0.1.8"
|
||||||
ntex-tls = "=0.1.0-b.1"
|
ntex-tls = "=0.1.0-b.1"
|
||||||
ntex-io = "=0.1.0-b.2"
|
ntex-io = "=0.1.0-b.3"
|
||||||
ntex-rt = { version = "0.4.0-b.0", default-features = false, features = ["tokio"] }
|
ntex-rt = { version = "0.4.0-b.0", default-features = false, features = ["tokio"] }
|
||||||
|
|
||||||
base64 = "0.13"
|
base64 = "0.13"
|
||||||
|
|
|
@ -128,7 +128,7 @@ where
|
||||||
match poll_fn(|cx| body.poll_next_chunk(cx)).await {
|
match poll_fn(|cx| body.poll_next_chunk(cx)).await {
|
||||||
Some(result) => {
|
Some(result) => {
|
||||||
if !io.encode(h1::Message::Chunk(Some(result?)), codec)? {
|
if !io.encode(h1::Message::Chunk(Some(result?)), codec)? {
|
||||||
io.write_ready(false).await?;
|
io.flush(false).await?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
|
@ -137,7 +137,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
io.write_ready(true).await?;
|
io.flush(true).await?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,12 @@ mod socket;
|
||||||
mod test;
|
mod test;
|
||||||
mod worker;
|
mod worker;
|
||||||
|
|
||||||
|
#[cfg(feature = "openssl")]
|
||||||
|
pub use ntex_tls::openssl;
|
||||||
|
|
||||||
|
#[cfg(feature = "rustls")]
|
||||||
|
pub use ntex_tls::rustls;
|
||||||
|
|
||||||
pub(crate) use self::builder::create_tcp_listener;
|
pub(crate) use self::builder::create_tcp_listener;
|
||||||
pub use self::builder::ServerBuilder;
|
pub use self::builder::ServerBuilder;
|
||||||
pub use self::config::{Configuration, RuntimeConfiguration, ServiceConfig};
|
pub use self::config::{Configuration, RuntimeConfiguration, ServiceConfig};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue