2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
2024-02-02 13:36:10 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2021-10-08 09:25:55 +00:00
|
|
|
#include <QtCore>
|
|
|
|
|
2022-08-08 22:05:33 +00:00
|
|
|
// This test shows how to use asyncify to enable blocking the main
|
|
|
|
// thread on QEventLoop::exec(), while event processing continues.
|
2021-10-08 09:25:55 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QCoreApplication app(argc, argv);
|
|
|
|
|
|
|
|
QTimer::singleShot(1000, []() {
|
|
|
|
|
|
|
|
QEventLoop loop;
|
|
|
|
QTimer::singleShot(2000, [&loop]() {
|
|
|
|
qDebug() << "Calling QEventLoop::quit()";
|
|
|
|
loop.quit();
|
|
|
|
});
|
|
|
|
|
|
|
|
qDebug() << "Calling QEventLoop::exec()";
|
|
|
|
loop.exec();
|
|
|
|
qDebug() << "Returned from QEventLoop::exec()";
|
|
|
|
});
|
|
|
|
|
|
|
|
app.exec();
|
|
|
|
}
|