2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
// ![0]
|
|
|
|
WorkerScript.onMessage = function(msg) {
|
|
|
|
if (msg.action == 'appendCurrentTime') {
|
|
|
|
var data = {'time': new Date().toTimeString()};
|
|
|
|
msg.model.append(data);
|
|
|
|
msg.model.sync(); // updates the changes to the list
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ![0]
|