Skip to content
  • Qt Remote Objects vs MQTT

    Unsolved General and Desktop mqtt remote remote objects qtro websocket
    3
    0 Votes
    3 Posts
    976 Views
    SGaistS
    Hi, There's a pretty interesting Ars Technica article about netcode in fighting games. Worth a read.
  • Change permissions. QtRemoteObjects

    Unsolved General and Desktop qtremoteobject qtro
    1
    0 Votes
    1 Posts
    368 Views
    No one has replied
  • Is there some people using QtRO ?

    Unsolved General and Desktop qtro qtremote tcp ssl
    2
    0 Votes
    2 Posts
    982 Views
    SGaistS
    Hi, You should rather bring this to the interest mailing list. You'll find there the QtRemoteObject developers/maintainers. This forum is more user oriented.
  • QRemoteObjectPendingReply ?

    Unsolved General and Desktop qtro qtremoteobject
    3
    0 Votes
    3 Posts
    1k Views
    U
    Just had the same problem, here are my findings: QRemoteObjectPendingReply inherits from QRemoteObjectPendingCall. Therefore it inherits the bool waitForFinished(int timeout = 30000) method. Example: // DeviceManagerReplica* m_deviceManager // class DeviceManagerReplica created via rep-compiler QRemoteObjectPendingReply<QStringList> result = m_deviceManager->availableDevices(); result.waitForFinished(); qCDebug(lc) << result.returnValue(); waitForFinished() seems to be a sync call, thus the m_deviceManager instance should not live in the main GUI-thread. Hope this helps.
  • QRemoteObject with QDomDocument

    Moved Solved 3rd Party Software qtro
    2
    0 Votes
    2 Posts
    975 Views
    M
    Hi I have made it to work. After rep files are generated with compile error, edit them and paste QDataStream definition before class body. Ifndef is necessary if you have more than one class for remoting with QDomDocument in signal/slot #ifndef _xml_operator_ #define _xml_operator_ Q_DECLARE_METATYPE(QDomDocument) inline QDataStream& operator<<(QDataStream& out, QDomDocument xml) { out << xml.toString(); return out; } inline QDataStream& operator>>(QDataStream& in, QDomDocument& xml) { QString msg; in >> msg; xml.setContent(msg); return in; } #endif //_xml_operator_ hope it will help somebody Best Regards Marek