You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd love to have an equivalent of the tokio::sync::watch types. These provide a channel that stores only the latest value sent. This is convenient for request coalescing: first one in creates the watch and spawns a task to do the request, subsequent requests wait on the existing watch.
The text was updated successfully, but these errors were encountered:
I'd love to have an equivalent of the
tokio::sync::watch
types. These provide a channel that stores only the latest value sent. This is convenient for request coalescing: first one in creates the watch and spawns a task to do the request, subsequent requests wait on the existing watch.The text was updated successfully, but these errors were encountered: