我正在尝试创建一个具有特定名称的 GenEvent 进程(对于这个问题,我将使用 {:global, :x}
)。如果我正常创建 GenEvent,例如GenEvent.start_link([name: {:global, :x}])
,我可以访问该名称的 GenEvent 。那挺好的。但我也想在监督树下创建 GenEvent。为此,我将基因事件放入 Supervision.Spec worker
规范中,这就是事情发生的时候。
iex(1)> {:ok, sup} = Supervisor.start_link([], strategy: :one_for_one)
{:ok, #PID<0.127.0>}
iex(2)> Supervisor.start_child(sup, Supervisor.Spec.worker(GenEvent, [name: {:global, :x}], []))
{:error,
{{:EXIT,
{:function_clause,
[{GenEvent, :start_link, [name: {:global, :x}],
[file: 'lib/gen_event.ex', line: 358]},
{:supervisor, :do_start_child, 2, [file: 'supervisor.erl', line: 343]},
{:supervisor, :handle_start_child, 2, [file: 'supervisor.erl', line: 715]},
{:supervisor, :handle_call, 3, [file: 'supervisor.erl', line: 400]},
{:gen_server, :try_handle_call, 4, [file: 'gen_server.erl', line: 629]},
{:gen_server, :handle_msg, 5, [file: 'gen_server.erl', line: 661]},
{:proc_lib, :init_p_do_apply, 3, [file: 'proc_lib.erl', line: 239]}]}},
{:child, :undefined, GenEvent, {GenEvent, :start_link, [name: {:global, :x}]},
:permanent, 5000, :worker, :dynamic}}}
我究竟做错了什么?
最佳答案
(这个答案来自 asonge
上 #elixir
中的 irc.freenode.net
。谢谢!)args
函数的 Supervisor.Spec.worker
值采用要传递给函数的参数列表。对于 GenEvent.start_link\1
,它接受一个列表参数。因此,我需要传递一个包含一个元素的列表(将 args 数组传递给 start_link
),这是 start_link
所需的列表。因此,对 worker
的调用是 Supervisor.Spec.worker(GenEvent, [[name: {:global, :x}]], [])
。
关于elixir - OTP:使用名称在主管下启动 GenEvent,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33050065/