diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-12-16 14:27:04 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-12-16 14:27:04 +0900 |
commit | d81e33841e0e2bb7dacc562aea7b820900b0d074 (patch) | |
tree | 96afb0e0d6340888a9e8a2479ea1064f6aa93a15 /examples | |
parent | 2b68f4ae10d6c61b47c983e496380c86da1ff211 (diff) | |
download | libquotient-d81e33841e0e2bb7dacc562aea7b820900b0d074.tar.gz libquotient-d81e33841e0e2bb7dacc562aea7b820900b0d074.zip |
qmc-example: check Room::messageSent() more carefully
Diffstat (limited to 'examples')
-rw-r--r-- | examples/qmc-example.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp index a5e5a481..652c1f92 100644 --- a/examples/qmc-example.cpp +++ b/examples/qmc-example.cpp @@ -140,8 +140,16 @@ void QMCTest::run() c->sync(10000); else if (targetRoom) { - targetRoom->postPlainText(origin % ": All tests finished"); - connect(targetRoom, &Room::messageSent, this, &QMCTest::leave); + // TODO: Waiting for proper futures to come so that it could be: +// targetRoom->postPlainText(origin % ": All tests finished") +// .then(this, &QMCTest::leave); + auto txnId = + targetRoom->postPlainText(origin % ": All tests finished"); + connect(targetRoom, &Room::messageSent, this, + [this,txnId] (QString serverTxnId) { + if (txnId == serverTxnId) + leave(); + }); } else finalize(); |