Sets the "notified" state to true and wakes waiting threads.
Synopsis
Declared in <absl/synchronization/notification.h>
void
Notify();
Description
Sets the "notified" state of this notification to true and wakes waiting threads. Note: do not call Notify() multiple times on the same Notification; calling Notify() more than once on the same notification results in undefined behavior.
Created with MrDocs