如果静态启动子规范:
init(...) ->
{ok, {{RestartStrategy, MaxR, MaxT},
[ChildSpec, ...]}}.
但是,如果我动态启动子规范:
start_child(SupRef, ChildSpec) -> startchild_ret()
如何确定 RestartStrategy、 MaxR 和 MaxT ?
如果静态启动子规范:
init(...) ->
{ok, {{RestartStrategy, MaxR, MaxT},
[ChildSpec, ...]}}.
但是,如果我动态启动子规范:
start_child(SupRef, ChildSpec) -> startchild_ret()
如何确定 RestartStrategy、 MaxR 和 MaxT ?