Read the statement by Michael Teeuw here.
Does node_helper know if all module instances are already started?
-
@MMRIZE My node_helper does not interact with other modules. It interacts only with many instances of my module, because there is only one node_helper even if module has multiple instances. It looks that DOM_OBJECTS_CREATED notification is a good way to know that each module instance is already started. However, as it is received by the module, in fact each instance will pass that info to node_helper while only one is enough. However, this is not a huge issue. After this is passed to node_helper I can be sure that module instances are ready to display data through API provided by the node_helper. Moreover, I can be sure that all individual configs for each module are already loaded.
-
@Adam-2
You can assign and deliver someinstanceID
to distinguish which instance of your module transfers this notification.
Or you can usePromise.race()
(to confirm first socketNotification coming from any instance) orPromise.allSettled()
(to confirm entire socketNotifications delivered from all instances even though fail or not) in node_helper to check socketNotifications receiving. (Anyway, you need to check how many instances there exist before promise racing) -
@MMRIZE and config. is accessible in node_helper, so one could count the module instances
-
@sdetweil Is config file accessible from the node_helper? I thought that only core module files can access it and have to send it back to node_helper if needed.
-
@Adam-2 see the global config var in the node_helper
its EVERYTHING in config.js
-
@sdetweil I’m searching the documentation and cannot find this global config var. How exactly can I access it?
-
-
@sdetweil Works as you wrote. Sadly its not in the documentation.