Automatically unlocks and re-locks a mutex object. More...
#include <juce_ScopedLock.h>
Public Member Functions | |
GenericScopedUnlock (const LockType &lock) noexcept | |
Creates a GenericScopedUnlock. More... | |
~GenericScopedUnlock () noexcept | |
Destructor. More... | |
Private Attributes | |
const LockType & | lock_ |
Automatically unlocks and re-locks a mutex object.
This is the reverse of a GenericScopedLock object - instead of locking the mutex for the lifetime of this object, it unlocks it.
Make sure you don't try to unlock mutexes that aren't actually locked!
e.g.
{Core}
|
inlineexplicitnoexcept |
Creates a GenericScopedUnlock.
As soon as it is created, this will unlock the CriticalSection, and when the ScopedLock object is deleted, the CriticalSection will be re-locked.
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.
|
inlinenoexcept |
Destructor.
The CriticalSection will be unlocked 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!
References juce::GenericScopedLock< LockType >::lock_.
|
private |