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


Elixir Agent.stop用法及代碼示例


Elixir語言中 Agent.stop 相關用法介紹如下。

用法:

stop(agent, reason \\ :normal, timeout \\ :infinity)
@spec stop(agent(), reason :: term(), timeout()) :: :ok

使用給定的 reason 同步停止代理。

如果代理因給定原因終止,則返回:ok。如果代理因其他原因終止,調用將退出。

此函數保留有關錯誤報告的 OTP 語義。如果原因不是 :normal:shutdown{:shutdown, _} ,則會記錄錯誤報告。

例子

iex> {:ok, pid} = Agent.start_link(fn -> 42 end)
iex> Agent.stop(pid)
:ok

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Agent.stop(agent, reason \\ :normal, timeout \\ :infinity)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。