1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
//! [](https://docs.rs/async-fuse) //! [](https://crates.io/crates/async-fuse) //! [](https://github.com/udoprog/async-fuse/actions) //! //! Helpers for "fusing" asynchronous computations. //! //! A fused operation has a well-defined behavior once the operation has //! completed. In this library, it means that a fused operation that has //! completed will *block forever* by returning [Poll::Pending]. //! //! This is similar to the [Fuse][futures-fs-fuse] type provided in futures-rs, //! but provides more utility allowing it to interact with types which does not //! implement [FusedFuture] or [FusedStream] as is now the case with all core //! Tokio types since 1.0. //! //! This is especially useful in combination with optional branches using //! [tokio::select], where the future being polled is optionally set. So instead //! of requiring a [branch precondition], the future will simply be marked as //! pending indefinitely and behave accordingly when polled. //! //! # Features //! //! * `stream` - Makes the [Fuse] implement the [Stream] trait if it contains a //! stream. //! //! # Examples //! //! > This is available as the `stack_ticker` example: //! > ```sh //! > cargo run --example stack_ticker //! > ``` //! //! ```rust //! use async_fuse::Fuse; //! use std::time::Duration; //! use tokio::time; //! //! # #[tokio::main] //! # async fn main() { //! let mut duration = Duration::from_millis(500); //! //! let sleep = Fuse::new(time::sleep(duration)); //! tokio::pin!(sleep); //! //! let update_duration = Fuse::new(time::sleep(Duration::from_secs(2))); //! tokio::pin!(update_duration); //! //! for _ in 0..10usize { //! tokio::select! { //! _ = &mut sleep => { //! println!("Tick"); //! sleep.set(Fuse::new(time::sleep(duration))); //! } //! _ = &mut update_duration => { //! println!("Tick faster!"); //! duration = Duration::from_millis(250); //! } //! } //! } //! # } //! ``` //! //! For some types it might be easier to fuse the value on the heap. To make //! this easier, we provide the [Fuse::pin] constructor which provides a fused //! value which is pinned on the heap. //! //! As a result, it looks pretty similar to the above example. //! //! > This is available as the `heap_ticker` example: //! > ```sh //! > cargo run --example heap_ticker //! > ``` //! //! ```rust //! use async_fuse::Fuse; //! use std::time::Duration; //! use tokio::time; //! //! # #[tokio::main] //! # async fn main() { //! let mut duration = Duration::from_millis(500); //! //! let mut sleep = Fuse::pin(time::sleep(duration)); //! let mut update_duration = Fuse::pin(time::sleep(Duration::from_secs(2))); //! //! for _ in 0..10usize { //! tokio::select! { //! _ = &mut sleep => { //! println!("Tick"); //! sleep.set(Box::pin(time::sleep(duration))); //! } //! _ = &mut update_duration => { //! println!("Tick faster!"); //! duration = Duration::from_millis(250); //! } //! } //! } //! # } //! ``` //! //! [futures-fs-fuse]: https://docs.rs/futures/0/futures/future/struct.Fuse.html //! [FusedFuture]: https://docs.rs/futures/0/futures/future/trait.FusedFuture.html //! [FusedStream]: https://docs.rs/futures/0/futures/stream/trait.FusedStream.html //! [Poll::Pending]: https://doc.rust-lang.org/std/task/enum.Poll.html#variant.Pending //! [Stream]: https://docs.rs/futures-core/0/futures_core/stream/trait.Stream.html //! [Fuse]: https://docs.rs/async-fuse/0/async_fuse/struct.Fuse.html //! [branch precondition]: https://docs.rs/tokio/1.0.1/tokio/macro.select.html#avoid-racy-if-preconditions //! [tokio::select]: https://docs.rs/tokio/1/tokio/macro.select.html #![deny(missing_docs)] mod fuse; mod poll; pub use self::fuse::Fuse; #[cfg(feature = "stream")] pub use futures_core::Stream;