如何将消息发送到另一个节点?

时间:2013-06-04 08:48:40

标签: erlang

我想实现一个简单的聊天室,其中两个节点可以相互同步发送消息。没有一个节点扮演服务器的角色。

我是否可以使用!向另一个节点发送消息,如果我有spawn(Node,Module,Fun,Args)函数在此节点上拥有进程的pid?

1 个答案:

答案 0 :(得分:14)

您可以向另一个节点发送与您对同一节点本地进程相同的进程。当然,你需要拥有进程ID。但是您也可以使用元组{RegisteredName,NodeName}发送到另一个节点上注册的进程,例如

register(a, self()), {a, node()} ! foo.

会向自己发送一条消息。相同的语法适用于各个节点。

更详细的例子

在第一个shell中:

erl -sname one
Erlang R15B01 (erts-5.9.1) [source] [smp:8:8] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.9.1  (abort with ^G)
one@grannysmith)1> (one@grannysmith)1> register(hello_server, self()).
(one@grannysmith)2>
true

在第二个shell中:

erl -sname two
Erlang R15B01 (erts-5.9.1) [source] [smp:8:8] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.9.1  (abort with ^G)
two@grannysmith)1> (one@grannysmith)1> {hello_server, 'one@grannysmith'} ! good_day.
good_day
(two@grannysmith)2>

再次在第一个shell中:

(one@grannysmith)2> flush().
Shell got good_day
ok