pub struct Watcher<T> { /* private fields */ }
Expand description
An observer for a value.
The Watcher
can get the current value, and will be notified when the value changes.
Only the most recent value is accessible, and if the thread with the Watchable
changes the value faster than the thread with the Watcher
can keep up with, then
it’ll miss in-between values.
When the thread changing the Watchable
pauses updating, the Watcher
will always
end up reporting the most recent state eventually.
Implementations§
Source§impl<T: Clone + Eq> Watcher<T>
impl<T: Clone + Eq> Watcher<T>
Sourcepub fn get(&self) -> Result<T, Disconnected>
pub fn get(&self) -> Result<T, Disconnected>
Returns the currently held value.
Returns Err(Disconnected)
if the original
Watchable
was dropped.
Sourcepub fn updated(&mut self) -> WatchNextFut<'_, T> ⓘ
pub fn updated(&mut self) -> WatchNextFut<'_, T> ⓘ
Returns a future completing with Ok(value)
once a new value is set, or with
Err(Disconnected)
if the connected Watchable
was dropped.
§Cancel Safety
The returned future is cancel-safe.
Sourcepub fn stream(self) -> WatcherStream<T>
pub fn stream(self) -> WatcherStream<T>
Returns a stream which will yield the most recent values as items.
The first item of the stream is the current value, so that this stream can be easily used to operate on the most recent value.
Note however, that only the last item is stored. If the stream is not polled when an item is available it can be replaced with another item by the time it is polled.
This stream ends once the original Watchable
has been dropped.
§Cancel Safety
The returned stream is cancel-safe.
Sourcepub fn stream_updates_only(self) -> WatcherStream<T>
pub fn stream_updates_only(self) -> WatcherStream<T>
Returns a stream which will yield the most recent values as items, starting from the next unobserved future value.
This means this stream will only yield values when the watched value changes, the value stored at the time the stream is created is not yielded.
Note however, that only the last item is stored. If the stream is not polled when an item is available it can be replaced with another item by the time it is polled.
This stream ends once the original Watchable
has been dropped.
§Cancel Safety
The returned stream is cancel-safe.