#sink #future #async

quicksink

Create a Sink from some value and a closure returning a Future

3 releases

0.1.2 Apr 7, 2020
0.1.1 Jan 7, 2020
0.1.0 Dec 10, 2019

#1267 in Asynchronous

Download history 36602/week @ 2023-12-06 33402/week @ 2023-12-13 23066/week @ 2023-12-20 13523/week @ 2023-12-27 26677/week @ 2024-01-03 30196/week @ 2024-01-10 36243/week @ 2024-01-17 35049/week @ 2024-01-24 30734/week @ 2024-01-31 37372/week @ 2024-02-07 39720/week @ 2024-02-14 37196/week @ 2024-02-21 36626/week @ 2024-02-28 33192/week @ 2024-03-06 34332/week @ 2024-03-13 34444/week @ 2024-03-20

145,038 downloads per month
Used in 205 crates (9 directly)

Apache-2.0 OR MIT

15KB
260 lines

QuickSink

Allows creating an implementation of the Sink trait from an initial value and a closure returning a Future.

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

Create a Sink implementation from an initial value and a closure returning a Future.

This is very similar to how futures::stream::unfold creates a Stream implementation from a seed value and a future-returning closure.

Examples

use async_std::io;
use futures::prelude::*;
use quicksink::Action;

quicksink::make_sink(io::stdout(), |mut stdout, action| async move {
    match action {
        Action::Send(x) => stdout.write_all(x).await?,
        Action::Flush => stdout.flush().await?,
        Action::Close => stdout.close().await?
    }
    Ok::<_, io::Error>(stdout)
});

Panics

  • If any of the Sink methods produce an error, the sink transitions to a failure state and none of its methods must be called afterwards or else a panic will occur.
  • If Sink::poll_close has been called, no other sink method must be called afterwards or else a panic will be caused.

Dependencies

~93KB