QEventLoopLocker Class

The QEventLoopLocker class provides a means to quit an event loop when it is no longer needed. 更多...

头文件: #include <QEventLoopLocker>
qmake: QT += core
开始支持版本: Qt 5.0

公有函数

QEventLoopLocker()
QEventLoopLocker(QEventLoop *loop)
QEventLoopLocker(QThread *thread)
~QEventLoopLocker()

详细描述

The QEventLoopLocker class provides a means to quit an event loop when it is no longer needed.

The QEventLoopLocker operates on particular objects - either a QCoreApplication instance, a QEventLoop instance or a QThread instance.

This makes it possible to, for example, run a batch of jobs with an event loop and exit that event loop after the last job is finished. That is accomplished by keeping a QEventLoopLocker with each job instance.

The variant which operates on QCoreApplication makes it possible to finish asynchronously running jobs after the last gui window has been closed. This can be useful for example for running a job which uploads data to a network.

参见 QEventLoop and QCoreApplication.

成员函数

QEventLoopLocker::QEventLoopLocker()

Creates an event locker operating on the QCoreApplication.

The application will quit when there are no more QEventLoopLockers operating on it.

参见 QCoreApplication::quit() and QCoreApplication::isQuitLockEnabled().

QEventLoopLocker::QEventLoopLocker(QEventLoop *loop)

Creates an event locker operating on the loop.

This particular QEventLoop will quit when there are no more QEventLoopLockers operating on it.

参见 QEventLoop::quit().

QEventLoopLocker::QEventLoopLocker(QThread *thread)

Creates an event locker operating on the thread.

This particular QThread will quit when there are no more QEventLoopLockers operating on it.

参见 QThread::quit().

QEventLoopLocker::~QEventLoopLocker()

Destroys this event loop locker object