summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/tcp/stream.rs
diff options
context:
space:
mode:
authorZahari Dichev <zaharidichev@gmail.com>2020-11-16 22:49:35 +0200
committerGitHub <noreply@github.com>2020-11-16 12:49:35 -0800
commitd0ebb4154748166a4ba07baa4b424a1c45efd219 (patch)
tree5ea4d611256290f62baea1a9ffa3333b254181df /tokio/src/net/tcp/stream.rs
parentf5cb4c20422a35b51bfba3391744f8bcb54f7581 (diff)
sync: add `Notify::notify_waiters` (#3098)
This PR makes `Notify::notify_waiters` public. The method already exists, but it changes the way `notify_waiters`, is used. Previously in order for the consumer to register interest, in a notification triggered by `notify_waiters`, the `Notified` future had to be polled. This introduced friction when using the api as the future had to be pinned before polled. This change introduces a counter that tracks how many times `notified_waiters` has been called. Upon creation of the future the number of times is loaded. When first polled the future compares this number with the count state of the `Notify` type. This avoids the need for registering the waiter upfront. Fixes: #3066
Diffstat (limited to 'tokio/src/net/tcp/stream.rs')
0 files changed, 0 insertions, 0 deletions