I have to create a set of plugin manager, where plugin manager is a main process, child processes are plugins using Qt 5.13 and C++. All processes are created on a single PC. Each child process implements Source
(in terms of Qt Remote Objects).
I'd like to gather N replicas for N processes. How can I implement this? Is a single QRemoteObjectNode
instance enough for it (or do I have to store pairs node-replica
)? Is using QRemoteObjectRegistry
redundant here? All apps are within one subfolder. Each host node has unique url in the following form: "local:base_name_of_application". I'd like to loop in the form node->acquire("local:current_app_name");