10 releases
0.3.1 | Jun 14, 2023 |
---|---|
0.3.0 | Aug 20, 2019 |
0.2.0 | Mar 19, 2019 |
0.1.0 |
|
0.0.2 | Mar 16, 2018 |
#29 in Asynchronous
8,407,300 downloads per month
Used in 19,832 crates
(8 directly)
20KB
278 lines
Want
A Future
s channel-like utility to signal when a value is wanted.
Futures are supposed to be lazy, and only starting work if Future::poll
is called. The same is true of Stream
s, but when using a channel as
a Stream
, it can be hard to know if the receiver is ready for the next
value.
Put another way, given a (tx, rx)
from futures::sync::mpsc::channel()
,
how can the sender (tx
) know when the receiver (rx
) actually wants more
work to be produced? Just because there is room in the channel buffer
doesn't mean the work would be used by the receiver.
This is where something like want
comes in. Added to a channel, you can
make sure that the tx
only creates the message and sends it when the rx
has poll()
for it, and the buffer was empty.
License
want
is provided under the MIT license. See LICENSE.
lib.rs
:
A Futures channel-like utility to signal when a value is wanted.
Futures are supposed to be lazy, and only starting work if Future::poll
is called. The same is true of Stream
s, but when using a channel as
a Stream
, it can be hard to know if the receiver is ready for the next
value.
Put another way, given a (tx, rx)
from futures::sync::mpsc::channel()
,
how can the sender (tx
) know when the receiver (rx
) actually wants more
work to be produced? Just because there is room in the channel buffer
doesn't mean the work would be used by the receiver.
This is where something like want
comes in. Added to a channel, you can
make sure that the tx
only creates the message and sends it when the rx
has poll()
for it, and the buffer was empty.
Example
extern crate want;
// Some message that is expensive to produce.
struct Expensive;
// Some futures-aware MPSC channel...
let (mut tx, mut rx) = mpsc_channel();
// And our `want` channel!
let (mut gv, mut tk) = want::new();
// Our receiving task...
spawn(async move {
// Maybe something comes up that prevents us from ever
// using the expensive message.
//
// Without `want`, the "send" task may have started to
// produce the expensive message even though we wouldn't
// be able to use it.
if !we_still_want_message() {
return;
}
// But we can use it! So tell the `want` channel.
tk.want();
match rx.recv().await {
Some(_msg) => println!("got a message"),
None => println!("DONE"),
}
});
// Our sending task
spawn(async move {
// It's expensive to create a new message, so we wait until the
// receiving end truly *wants* the message.
if let Err(_closed) = gv.want().await {
// Looks like they will never want it...
return;
}
// They want it, let's go!
tx.send(Expensive);
});
Dependencies
~9KB