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
This would make ::eventuals::Notification useful for signifying events that happen that other code might want to query periodically, e.g. a control loop that might periodically want to check if some interesting event has happened (like server shutdown or loop cancellation).
The text was updated successfully, but these errors were encountered:
::eventuals::Notification (a newly introduced type) is inspired by
absl::Notification
.Let's add a method to
::eventuals::Notification
calledHasBeenNotified()
or similar, similar to theabsl::Notification
equivalent: https://github.com/abseil/abseil-cpp/blob/547802119dfa444540d8f2bb8a9f50bf64252a0f/absl/synchronization/notification.h#L78-L80This would make
::eventuals::Notification
useful for signifying events that happen that other code might want to query periodically, e.g. a control loop that might periodically want to check if some interesting event has happened (like server shutdown or loop cancellation).The text was updated successfully, but these errors were encountered: