RPC Call from Erlang to Elixir
1 min readAug 9, 2018
If you want to call get_all function of BfsPilot.Models.Grid module from erlang rpc then
rpc:call(foo@localhost, ‘Elixir.BfsPilot.Models.Grid’, get_all, []).
Explanation — Elixir put all it’s module under ‘Elixir’ atom.