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


Elixir Registry.update_value用法及代碼示例


Elixir語言中 Registry.update_value 相關用法介紹如下。

用法:

update_value(registry, key, callback)
(從 1.4.0 開始)
@spec update_value(registry(), key(), (value() -> value())) ::
  {new_value :: term(), old_value :: term()} | :error

更新唯一 registry 中當前進程的 key 的值。

如果沒有為當前進程分配這樣的鍵,則返回 {new_value, old_value} 元組或 :error

如果給出非唯一注冊表,則會引發錯誤。

例子

iex> Registry.start_link(keys: :unique, name: Registry.UpdateTest)
iex> {:ok, _} = Registry.register(Registry.UpdateTest, "hello", 1)
iex> Registry.lookup(Registry.UpdateTest, "hello")
[{self(), 1}]
iex> Registry.update_value(Registry.UpdateTest, "hello", &(&1 + 1))
{2, 1}
iex> Registry.lookup(Registry.UpdateTest, "hello")
[{self(), 2}]

相關用法


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