当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Elixir Process.send用法及代码示例


Elixir语言中 Process.send 相关用法介绍如下。

用法:

send(dest, msg, options)
@spec send(dest, msg, [option]) :: :ok | :noconnect | :nosuspend
when dest: dest(), msg: any(), option: :noconnect | :nosuspend

向给定的 dest 发送消息。

dest 可以是远程或本地 PID、本地端口、本地注册名称或以 {registered_name, node} 形式的元组,用于在另一个节点上注册名称。

由编译器内联。

选项

  • :noconnect - 使用时,如果发送消息需要 auto-connection 到另一个节点,则不发送消息并返回 :noconnect

  • :nosuspend - 使用时,如果发送消息会导致发送方暂停,则不发送消息并返回 :nosuspend

否则发送消息并返回:ok

例子

iex> Process.send({:name, :node_that_does_not_exist}, :hi, [:noconnect])
:noconnect

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Process.send(dest, msg, options)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。