Qt Remote Object realizes inter process communication

1 Overview Qt Remote Object, called qtro for short, is a new module officially launched after Qt5.9, which is specially used for inter process communication (IPC). Qtro is essentially a point-to-point communication network. Each process accesses the qtro network through QRemoteObjectNode. The function providing node (which can be understood as ...

Posted by Marqis on Tue, 19 Oct 2021 12:07:59 -0700

Static Source of Qt Remote Objects

0. Preface Qt Remote Objects is an RPC remote call module added from Qt5.9. For details, you can learn from the document: https://doc.qt.io/qt-5/qtremoteobjects-gettingstarted.html From the perspective of personal use practice, it also has some advantages over other popular RPC frameworks: Qt like: if grpc is used, some   Qt's own type ...

Posted by HHawk on Sat, 04 Sep 2021 20:24:52 -0700