如何从已弃用的 Supervisor.spec 更新为新的 Supervisor.behaviour?
Posted
技术标签:
【中文标题】如何从已弃用的 Supervisor.spec 更新为新的 Supervisor.behaviour?【英文标题】:How to update from deprecated Supervisor.spec to new Supervisor.behaviour? 【发布时间】:2021-04-16 05:40:24 【问题描述】:背景
我正在尝试在我的应用程序中构建一个监督树,其中给定的 GenServer 必须监督其他 GenServer。这不是一个应用程序,只是一个需要监督他人的简单 GenServer。
为了实现这一点,我主要将注意力集中在以下文章上: http://codeloveandboards.com/blog/2016/03/20/supervising-multiple-genserver-processes/
代码
上面的文章把我引到了下面的代码:
defmodule A.Server do
use Supervisor
alias B
def start_link, do:
Supervisor.start_link(__MODULE__, nil, name: __MODULE__)
def init(nil) do
children = [B]
supervise(children, strategy: :one_for_one)
end
end
如您所见,我的 GenServer A
正在尝试监督另一个名为 B
的服务器。
问题
这里的问题是此示例中的所有内容都已弃用。我尝试按照说明阅读新的Supervisor docs
,特别是start_child
,我认为它可以正确替代已弃用的supervise
,但不幸的是我不明白如何将其应用于我的代码。
问题
如何更新我的代码使其不使用已弃用的函数?
【问题讨论】:
【参考方案1】:Supervisor
文档中有专门的部分提供示例。
defmodule A.Server do
use Supervisor
alias B
def start_link, do:
Supervisor.start_link(__MODULE__, nil, name: __MODULE__)
@impl Supervisor
def init(_) do
children = [
B, [:arg1, :arg2] # or just `B` if `start_link/0`
]
Supervisor.init(children, strategy: :one_for_one)
end
end
【讨论】:
完全错过了。这只是一个不知道在哪里看并且看错了地方的情况。谢谢!以上是关于如何从已弃用的 Supervisor.spec 更新为新的 Supervisor.behaviour?的主要内容,如果未能解决你的问题,请参考以下文章