global
demonstration
On terminal 1:
$ iex --name [email protected]
On terminal 2:
$ iex --name [email protected]
From either t1 or t2, connect to the other one.
# from t2
iex> Node.connect(:"[email protected]")
true
Check from either instance.
# from t2
iex> Node.list()
[:"[email protected]"]
# from t1
iex> Node.list()
[:"[email protected]"]
# from `t1`
Agent.start_link(fn -> %{t1: true} end, name: {:global, {:t1, "t1 description"}})
# from `t2`
Agent.get({:global, {:t1, "t1 description"}}, & &1)
t1:
~ :> iex --name [email protected]
Erlang/OTP 21 [erts-10.0.5] [source] [64-bit] [smp:12:12] [ds:12:12:10] [async-threads:1] [hipe]
Interactive Elixir (1.7.2) - press Ctrl+C to exit (type h() ENTER for help)
iex([email protected])1> Node.list()
[:"[email protected]"]
iex([email protected])2> Agent.start_link(fn -> %{t1: true} end, name: {:global, {:t1, "t1 description"}})
{:ok, #PID<0.112.0>}
iex([email protected])3>
t2:
~ :> iex --name [email protected]
Erlang/OTP 21 [erts-10.0.5] [source] [64-bit] [smp:12:12] [ds:12:12:10] [async-threads:1] [hipe]
Interactive Elixir (1.7.2) - press Ctrl+C to exit (type h() ENTER for help)
iex([email protected])1> Node.connect(:"[email protected]")
true
iex([email protected])2> Agent.get({:global, {:t1, "t1 description"}}, & &1)
%{t1: true}
iex([email protected])3>
|--------| |--------|
| t1 |----| t2 |
|--------| |--------|
| | | |
| At1 | | |
| | | |
|--------| |--------|
- At1 -> Agent named t1
t2 can communicate with At1