std::unique_lock<Mutex>::try_lock_until
Min standard notice:
Tries to lock (i.e., takes ownership of) the associated mutex. Blocks until specified timeout_time has been reached or the lock is acquired, whichever comes first. On successful lock acquisition returns true, otherwise returns false. May block for longer than timeout_time until has been reached.
# Declarations
template< class Clock, class Duration >
bool try_lock_until( const std::chrono::time_point<Clock, Duration>& timeout_time );
(since C++11)
# Parameters
timeout_time: maximum time point to block until
# Return value
true if the ownership of the mutex has been acquired successfully, false otherwise.
# Example
This section is incompleteReason: no example