better names for util functions

This commit is contained in:
Nikolay Kim 2021-04-11 11:57:57 +06:00
parent 67146e790a
commit 3bcd870565
3 changed files with 25 additions and 3 deletions

View file

@ -1,5 +1,11 @@
# Changes
## [0.1.1] - 2021-04-11
* next renamed to stream_recv
* send renamed to sink_write
## [0.1.0] - 2021-04-04
* Move utils to separate crate

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-util"
version = "0.1.0"
version = "0.1.1"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for ntex framework"
keywords = ["network", "framework", "async", "futures"]

View file

@ -45,17 +45,33 @@ where
}
}
/// Creates a future that resolves to the next item in the stream.
#[doc(hidden)]
pub async fn next<S>(stream: &mut S) -> Option<S::Item>
where
S: Stream + Unpin,
{
stream_recv(stream).await
}
/// Creates a future that resolves to the next item in the stream.
pub async fn stream_recv<S>(stream: &mut S) -> Option<S::Item>
where
S: Stream + Unpin,
{
poll_fn(|cx| Pin::new(&mut *stream).poll_next(cx)).await
}
#[doc(hidden)]
pub async fn send<S, I>(sink: &mut S, item: I) -> Result<(), S::Error>
where
S: Sink<I> + Unpin,
{
sink_write(sink, item).await
}
/// A future that completes after the given item has been fully processed
/// into the sink, including flushing.
pub async fn send<S, I>(sink: &mut S, item: I) -> Result<(), S::Error>
pub async fn sink_write<S, I>(sink: &mut S, item: I) -> Result<(), S::Error>
where
S: Sink<I> + Unpin,
{