rtic icon indicating copy to clipboard operation
rtic copied to clipboard

Add Signal to rtic-sync

Open AdinAck opened this issue 9 months ago • 2 comments

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!

AdinAck avatar May 07 '24 17:05 AdinAck