當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。