Automatically locks and unlocks a ReadWriteLock object. More...
#include <juce_ScopedWriteLock.h>
Public Member Functions | |
ScopedTryWriteLock (ReadWriteLock &lockIn) noexcept | |
Creates a ScopedTryWriteLock and calls ReadWriteLock::tryEnterWrite() immediately. | |
ScopedTryWriteLock (ReadWriteLock &lockIn, bool acquireLockOnInitialisation) noexcept | |
Creates a ScopedTryWriteLock. | |
~ScopedTryWriteLock () noexcept | |
Destructor. | |
bool | isLocked () const noexcept |
Returns true if the mutex was successfully locked. | |
bool | retryLock () noexcept |
Retry gaining the lock by calling tryEnter on the underlying lock. | |
Automatically locks and unlocks a ReadWriteLock object.
Use one of these as a local variable to control access to a ReadWriteLock.
e.g.
|
noexcept |
Creates a ScopedTryWriteLock and calls ReadWriteLock::tryEnterWrite() immediately.
When the ScopedTryWriteLock object is destructed, the ReadWriteLock will be unlocked (if it was successfully acquired).
Make sure this object is created and destructed 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.
|
noexcept |
Creates a ScopedTryWriteLock.
If acquireLockOnInitialisation is true then as soon as it is created, this will call ReadWriteLock::tryEnterWrite(), and when the ScopedTryWriteLock object is destructed, the ReadWriteLock will be unlocked (if it was successfully acquired).
Make sure this object is created and destructed 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.
|
noexcept |
Destructor.
The ReadWriteLock's exitWrite() method will be called when the destructor is called.
Make sure this object is created and destructed by the same thread, otherwise there are no guarantees what will happen!
|
noexcept |
Returns true if the mutex was successfully locked.
|
noexcept |
Retry gaining the lock by calling tryEnter on the underlying lock.