[#absl-Notification-Notify] = xref:absl.adoc[absl]::xref:absl/Notification.adoc[Notification]::Notify :relfileprefix: ../../ :mrdocs: Sets the "notified" state to `true` and wakes waiting threads. == Synopsis Declared in `<absl/synchronization/notification.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- 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. [.small]#Created with https://www.mrdocs.com[MrDocs]#