WaitMap
could have a mechanism to wake a waiter but immediately requeue it
#464
Labels
WaitMap
could have a mechanism to wake a waiter but immediately requeue it
#464
cc @jamesmunns
Currently, when waking a task waiting on a
WaitMap
, the task's entry is always removed from the list. This means that it won't be notified again if we wake the same key with a different value. This makes it difficult to implement "stream-style" rather than "request-response style" APIs usingWaitMap
.The text was updated successfully, but these errors were encountered: