Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

QtROServerFactory Class

A class that holds information about server backends available on the Qt Remote Objects network. More...

Header: #include <QtROServerFactory>
CMake: find_package(Qt6 REQUIRED COMPONENTS RemoteObjects)
target_link_libraries(mytarget PRIVATE Qt6::RemoteObjects)
qmake: QT += remoteobjects
void qRegisterRemoteObjectsServer(const QString &id)

Detailed Description

Related Non-Members

template <typename T> void qRegisterRemoteObjectsServer(const QString &id)

Registers the Remote Objects server id for the type T.

If you need a custom transport protocol for Qt Remote Objects, you need to register the client & server implementation here.

Note: This function requires that T is a fully defined type at the point where the function is called.

This example registers the class CustomServerImpl as "myprotocol":

qRegisterRemoteObjectsServer<CustomServerImpl>(QStringLiteral("myprotocol"));

With this in place, you can now instantiate nodes using this new custom protocol:

QRemoteObjectNode client(QUrl(QStringLiteral("myprotocol:registry")));

See also qRegisterRemoteObjectsServer.

Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded