The SharedTimedLockable requirements describe the characteristics of types that provide timed shared blocking semantics for execution agents (threads, processes, tasks).
[edit] RequirementsFor type L
to be SharedTimedLockable, given
rel_time
, a value of a specialization of std::chrono::duration, andabs_time
, a value of a specialization of std::chrono::time_point,the following conditions have to be satisfied for an object m
of type L
:
rel_time
or until a lock on m
is acquired. true if the lock was acquired, false otherwise. m.try_lock_shared_until(abs_time) Blocks until the provided time point abs_time
is reached or a lock on m
is acquired. true if the lock was acquired, false otherwise. [edit] Notes
The try_lock_shared_for
and try_lock_shared_until
member functions obtain a shared lock on m on success.
The following standard library types satisfy SharedTimedLockable requirements:
provides shared mutual exclusion facility and implements locking with a timeoutRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4