I want to know if it is possible to obtain data of the other modules from a module. I am using ejabberd server 15.10, I implemented modules using Erlang.
Here is the case:
- I have a module that filters messages: mod_filter
- I have another module that makes some calculations while the server is running: mod_calculate
Is it possible to get fresh data from mod_calculate every time the ejabberd server filters a message at mod_filter.
Data isn't stored in modules but in variables. And you won't have access to internal variables on which code in one module operates without that that module exporting those variables to the external world somehow.
The module may have some functions already exported. Check with:
This will show you all functions exported in the module. Some of those functions may expose the variables from the module to other modules. If not, then you would need to add such functions and call them from
mod_filter
.