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.
-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([]) ->
{ok, {{simple_one_for_one, 0, 1}, [{egs_quests,
{egs_quests, start_link, []}, temporary, brutal_kill,

View File

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

View File

@ -38,7 +38,9 @@ start_zone(UniID, QuestID, ZoneID, ZoneData) ->
%% 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([]) ->
{ok, {{simple_one_for_one, 0, 1}, [{egs_zones,
{egs_zones, start_link, []}, temporary, brutal_kill,