Constructors
Declared in <absl/synchronization/notification.h>
Constructs a notification with an unnotified "notified" state.
Notification();
» more...
Deleted copy constructor; Notification is not copyable.
Notification(Notification const& other) = delete;
» more...
Constructs a notification with an explicit initial "notified" state.
explicit
Notification(bool prenotify);
» more...
| Name | Description |
|---|---|
| prenotify | The initial value of the "notified" state. |