New wait Overloads for the condition_variable_any
Explore three different wait variations of 'std::condition_variable_any'.
We'll cover the following...
We'll cover the following...
The three wait variations to wait, wait_for, and wait_until of the std::condition_variable_any get new overloads. They take a std::stop_token.
These new overloads need a predicate. The presented versions ensure that the threads be notified if a stop request for the passed ...