OpenShot Audio Library | OpenShotAudio 0.3.2
|
#include <juce_ScopedLock.h>
Public Member Functions | |
GenericScopedLock (const LockType &lock) noexcept | |
~GenericScopedLock () noexcept | |
Automatically locks and unlocks a mutex object.
Use one of these as a local variable to provide RAII-based locking of a mutex.
The templated class could be a CriticalSection, SpinLock, or anything else that provides enter() and exit() methods.
e.g.
Definition at line 54 of file juce_ScopedLock.h.
|
inlineexplicitnoexcept |
Creates a GenericScopedLock.
As soon as it is created, this will acquire the lock, and when the GenericScopedLock object is deleted, the lock will be released.
Make sure this object is created and deleted by the same thread, otherwise there are no guarantees what will happen! Best just to use it as a local stack object, rather than creating one with the new() operator.
Definition at line 67 of file juce_ScopedLock.h.
|
inlinenoexcept |
Destructor. The lock will be released when the destructor is called. Make sure this object is created and deleted by the same thread, otherwise there are no guarantees what will happen!
Definition at line 74 of file juce_ScopedLock.h.