std::shared_timed_mutex::try_lock_shared_until
Min standard notice:
Tries to lock the mutex in shared mode. 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.
# Declarations
template< class Clock, class Duration >
bool try_lock_shared_until( const std::chrono::time_point<Clock,Duration>& timeout_time );
(since C++14)
# Parameters
timeout_time: maximum time point to block until
# Return value
true if the shared lock ownership was acquired successfully, otherwise false.
# Example
This section is incompleteReason: no example