Qore Programming Language 1.14.0
|
provides a safe and exception-safe way to hold optional locks in Qore, only to be used on the stack, cannot be dynamically allocated More...
#include <QoreThreadLock.h>
Public Member Methods | |
DLLLOCAL | OptLocker (QoreThreadLock *l) |
creates the object and grabs the lock if the argument is not NULL | |
DLLLOCAL | ~OptLocker () |
releases the lock if there is a lock pointer being managed and destroys the object | |
Private Attributes | |
QoreThreadLock * | lck |
the pointer to the lock that will be managed | |
provides a safe and exception-safe way to hold optional locks in Qore, only to be used on the stack, cannot be dynamically allocated
Ensures that locks are released by locking the lock when the object is created and releasing it when the object is destroyed.