このページでは

QtRemoteObjects QML Type

QtRemoteObjects グローバルオブジェクトは、QML でリモート型を扱うための便利な関数を提供します。詳細...

Import Statement: import QtRemoteObjects 6.11

メソッド

  • Promise watch(QRemoteObjectPendingCall reply, int timeout)

詳細説明

メソッドの説明

Promise watch(QRemoteObjectPendingCall reply, int timeout = 30000)

reply で表される、レプリカからの戻り値をJavaScriptのPromiseにカプセル化します。タイムアウトはtimeout で設定できます。デフォルトのタイムアウト値は30秒です。

QtRemoteObjects.watch(replica.fetchDetails(identifier))
               .then(function(value) { details = value },
                     function(error) { console.log("error fetching details:", error) })

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.