File tree 3 files changed +24
-0
lines changed
3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,21 @@ pin_project! {
20
20
/// You can create a `Framed` instance by using the [`Decoder::framed`] adapter, or
21
21
/// by using the `new` function seen below.
22
22
///
23
+ /// # Cancellation safety
24
+ ///
25
+ /// * [`futures_util::sink::SinkExt::send`]: if send is used as the event in a
26
+ /// `tokio::select!` statement and some other branch completes first, then it is
27
+ /// guaranteed that the message was not sent, but the message itself is lost.
28
+ /// * [`tokio_stream::StreamExt::next`]: This method is cancel safe. The returned
29
+ /// future only holds onto a reference to the underlying stream, so dropping it will
30
+ /// never lose a value.
31
+ ///
23
32
/// [`Stream`]: futures_core::Stream
24
33
/// [`Sink`]: futures_sink::Sink
25
34
/// [`AsyncRead`]: tokio::io::AsyncRead
26
35
/// [`Decoder::framed`]: crate::codec::Decoder::framed()
36
+ /// [`futures_util::sink::SinkExt::send`]: futures_util::sink::SinkExt::send
37
+ /// [`tokio_stream::StreamExt::next`]: https://docs.rs/tokio-stream/latest/tokio_stream/trait.StreamExt.html#method.next
27
38
pub struct Framed <T , U > {
28
39
#[ pin]
29
40
inner: FramedImpl <T , U , RWFrames >
Original file line number Diff line number Diff line change @@ -17,9 +17,15 @@ pin_project! {
17
17
/// For examples of how to use `FramedRead` with a codec, see the
18
18
/// examples on the [`codec`] module.
19
19
///
20
+ /// # Cancellation safety
21
+ /// * [`tokio_stream::StreamExt::next`]: This method is cancel safe. The returned
22
+ /// future only holds onto a reference to the underlying stream, so dropping it will
23
+ /// never lose a value.
24
+ ///
20
25
/// [`Stream`]: futures_core::Stream
21
26
/// [`AsyncRead`]: tokio::io::AsyncRead
22
27
/// [`codec`]: crate::codec
28
+ /// [`tokio_stream::StreamExt::next`]: https://docs.rs/tokio-stream/latest/tokio_stream/trait.StreamExt.html#method.next
23
29
pub struct FramedRead <T , D > {
24
30
#[ pin]
25
31
inner: FramedImpl <T , D , ReadFrame >,
Original file line number Diff line number Diff line change @@ -18,8 +18,15 @@ pin_project! {
18
18
/// For examples of how to use `FramedWrite` with a codec, see the
19
19
/// examples on the [`codec`] module.
20
20
///
21
+ /// # Cancellation safety
22
+ ///
23
+ /// * [`futures_util::sink::SinkExt::send`]: if send is used as the event in a
24
+ /// `tokio::select!` statement and some other branch completes first, then it is
25
+ /// guaranteed that the message was not sent, but the message itself is lost.
26
+ ///
21
27
/// [`Sink`]: futures_sink::Sink
22
28
/// [`codec`]: crate::codec
29
+ /// [`futures_util::sink::SinkExt::send`]: futures_util::sink::SinkExt::send
23
30
pub struct FramedWrite <T , E > {
24
31
#[ pin]
25
32
inner: FramedImpl <T , E , WriteFrame >,
You can’t perform that action at this time.
0 commit comments