simple_one_for_one督程

有着 simple_one_for_one 重启规则的督程就是一个简化的 one_for_one 督程,其中所有的子进程都是动态添加的同一个进程的实例。

一个simple_one_for_one督程的回调模块的例子:

  1. -module(simple_sup).
  2. -behaviour(supervisor).
  3.  
  4. -export([start_link/0]).
  5. -export([init/1]).
  6.  
  7. start_link() ->
  8. supervisor:start_link(simple_sup, []).
  9.  
  10. init(_Args) ->
  11. {ok, {{simple_one_for_one, 0, 1},
  12. [{call, {call, start_link, []},
  13. temporary, brutal_kill, worker, [call]}]}}.

当启动后,该督程不会启动任何子进程。所有的子进程都是通过调用以下函数动态添加的:

  1. supervisor:start_child(Sup, List)

Sup 是督程的pid或者名字。 List 是任意的值列表,它会被添加到子进程规范中指定的参数列表中。如果启动函数被指定为 {M,F,A} ,那么会通过调用 apply(M,F,A++List) 来启动。

例如,为上面的 simple_sup 添加一个子进程:

  1. supervisor:start_child(Pid, [id1])

会导致通过 apply(call,start_link,[]++[id1]) 来启动子进程, 或者更直接点:

  1. call:start_link(id1)