aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlworkerscript/doc/snippets/qml/workerscript/script.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmlworkerscript/doc/snippets/qml/workerscript/script.mjs')
-rw-r--r--src/qmlworkerscript/doc/snippets/qml/workerscript/script.mjs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qmlworkerscript/doc/snippets/qml/workerscript/script.mjs b/src/qmlworkerscript/doc/snippets/qml/workerscript/script.mjs
new file mode 100644
index 0000000000..f55dee3507
--- /dev/null
+++ b/src/qmlworkerscript/doc/snippets/qml/workerscript/script.mjs
@@ -0,0 +1,4 @@
+WorkerScript.onMessage = function(message) {
+ // ... long-running operations and calculations are done here
+ WorkerScript.sendMessage({ 'reply': 'Mouse is at ' + message.x + ',' + message.y })
+}