mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
parent
2f68a2a641
commit
f47e830cfb
16 changed files with 183 additions and 25 deletions
|
@ -49,15 +49,6 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
#[doc(hidden)]
|
||||
#[deprecated(since = "0.1.4", note = "Use stream_recv() fn instead")]
|
||||
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
|
||||
|
@ -66,14 +57,6 @@ where
|
|||
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 sink_write<S, I>(sink: &mut S, item: I) -> Result<(), S::Error>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue