futures-promises

Crates.iofutures-promises
lib.rsfutures-promises
version0.1.11
sourcesrc
created_at2019-04-19 23:22:05.067969
updated_at2019-10-30 14:42:45.453963
descriptionPromises and Watched Variables for Futures
homepage
repositoryhttps://github.com/CptFox/futures-promises
max_upload_size
id129024
size6,416,658
Pierre Avital (p-avital)

documentation

README

Promises and Watched Variables for Futures

Promises

Promises are future values. They will only resolve once. This crate gives an implementation of Promises to work with Futures and Tokio

Watched Variables

Watched variables are variables that will emit a signal upon being altered.

This crate offers an RAII implementation of watched variables, to work with Futures and Tokio.

In this case, the signal is a futures::Stream that will return a clone of the new value of the watched variable whenever it is mutated.

This crate will notify the VariableWatched obtained from a WatchedVariable whenever one of its accessors (obtained through lock()) is dropped. If said accessor has been mutably derefenced, then the WatchedVariable will be considered to have been mutated.

Commit count: 14

cargo fmt