rtic
rtic copied to clipboard
Add Signal to rtic-sync
Add the Signal structure to rtic-sync.
A Signal has unlimited writers and one reader, many writes can occur before a read, all overwriting the previous.
A reader can asynchronously wait for a write, requiring the write to occur during the lifetime of the wait future, or immediately resolve from previous writes (up to the user).
That's it, thanks!