Use supervisor:child_spec() type where appropriate.

This commit is contained in:
Loïc Hoguin 2011-06-08 15:36:14 +02:00
parent bc47fcb049
commit 289ce855ad
3 changed files with 9 additions and 5 deletions

View File

@ -37,7 +37,9 @@ start_quest(UniID, QuestID) ->
%% supervisor. %% supervisor.
-spec init([]) -> {ok, {{simple_one_for_one, 0, 1}, [{_, _, _, _, _, _}, ...]}}. -spec init([]) -> {ok, {{simple_one_for_one, 0, 1}, [{egs_quests,
{egs_quests, start_link, []}, temporary, brutal_kill,
worker, [egs_quests]}]}}.
init([]) -> init([]) ->
{ok, {{simple_one_for_one, 0, 1}, [{egs_quests, {ok, {{simple_one_for_one, 0, 1}, [{egs_quests,
{egs_quests, start_link, []}, temporary, brutal_kill, {egs_quests, start_link, []}, temporary, brutal_kill,

View File

@ -27,7 +27,7 @@
start_link() -> start_link() ->
supervisor:start_link({local, ?MODULE}, ?MODULE, []). supervisor:start_link({local, ?MODULE}, ?MODULE, []).
-spec init([]) -> {ok, {{one_for_one, 10, 10}, [{_, _, _, _, _, _}, ...]}}. -spec init([]) -> {ok, {{one_for_one, 10, 10}, [supervisor:child_spec(), ...]}}.
init([]) -> init([]) ->
Procs = procs([egs_conf, {sup, egs_quests_sup}, {sup, egs_zones_sup}, Procs = procs([egs_conf, {sup, egs_quests_sup}, {sup, egs_zones_sup},
egs_accounts, egs_users, egs_seasons, egs_counters_db, egs_items_db, egs_accounts, egs_users, egs_seasons, egs_counters_db, egs_items_db,
@ -37,8 +37,8 @@ init([]) ->
%% Internal. %% Internal.
-spec procs([module()|{sup, module()}], [{_, _, _, _, _, _}]) -spec procs([module()|{sup, module()}], [supervisor:child_spec()])
-> [{_, _, _, _, _, _}]. -> [supervisor:child_spec()].
procs([], Acc) -> procs([], Acc) ->
lists:reverse(Acc); lists:reverse(Acc);
procs([{sup, Module}|Tail], Acc) -> procs([{sup, Module}|Tail], Acc) ->

View File

@ -38,7 +38,9 @@ start_zone(UniID, QuestID, ZoneID, ZoneData) ->
%% supervisor. %% supervisor.
-spec init([]) -> {ok, {{simple_one_for_one, 0, 1}, [{_, _, _, _, _, _}, ...]}}. -spec init([]) -> {ok, {{simple_one_for_one, 0, 1}, [{egs_zones,
{egs_zones, start_link, []}, temporary, brutal_kill,
worker, [egs_zones]}]}}.
init([]) -> init([]) ->
{ok, {{simple_one_for_one, 0, 1}, [{egs_zones, {ok, {{simple_one_for_one, 0, 1}, [{egs_zones,
{egs_zones, start_link, []}, temporary, brutal_kill, {egs_zones, start_link, []}, temporary, brutal_kill,