CnxRecursiveTimedMutex struct
#include <include/Cnx/sync/Mutex.h>
CnxRecursiveTimedMutex
is a higher-level mutex type for use when the properties of both a recursive and a timed mutex are necessary for the task at hand. It's directly comparable to C++'s std::recursive_timed_mutex
. It allows for both specifying a timeout for lock acquisition as well as recursive lock acquisition on the same thread.