absl::Notification::Notification

Constructors

Synopses

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...

Parameters

NameDescription
prenotifyThe initial value of the "notified" state.