Fixed 'supervisor' snippet

This commit is contained in:
Ngo The Trung 2015-05-23 20:29:31 +08:00
parent 8be99daa68
commit 84a4b197a8

View File

@ -103,8 +103,8 @@ snippet supervisor
supervisor:start_link({local, ?SERVER}, ?MODULE, []). supervisor:start_link({local, ?SERVER}, ?MODULE, []).
init([]) -> init([]) ->
Server = {${0:my_server}, {$2, start_link, []}, Server = {${0:my_server}, {${2}, start_link, []},
permanent, 2000, worker, [$2]}, permanent, 2000, worker, [${2}]},
Children = [Server], Children = [Server],
RestartStrategy = {one_for_one, 0, 1}, RestartStrategy = {one_for_one, 0, 1},
{ok, {RestartStrategy, Children}}. {ok, {RestartStrategy, Children}}.