Constructors
Declared in <absl/synchronization/blocking_counter.h>
Deleted copy constructor; BlockingCounter is not copyable.
BlockingCounter(BlockingCounter const& other) = delete;
» more...
Constructs a blocking counter with an initial count.
explicit
BlockingCounter(int initial_count);
» more...
| Name | Description |
|---|---|
| initial_count | The non-negative number of DecrementCount() calls required before Wait() unblocks. |