Sha256: 7a8b6d98fd18b9f5cd582b2764f9a3469a2b1d48d16c1affcd76c99a61bcb868
Contents?: true
Size: 1.03 KB
Versions: 62
Compression:
Stored size: 1.03 KB
Contents
% This supervisor is responsible for monitoring the % client service -module (pm_master_supervisor). -behaviour(supervisor). -export([start/0, start_in_shell_for_testing/0, start_link/1, init/1]). -ifdef(EUNIT). -include_lib("eunit/include/eunit.hrl"). -endif. start() -> spawn(fun() -> supervisor:start_link({local, ?MODULE}, ?MODULE, _Arg = []) end). start_in_shell_for_testing() -> {ok, Pid} = supervisor:start_link({local, ?MODULE}, ?MODULE, _Arg = []), unlink(Pid). start_link(Args) -> supervisor:start_link({local, ?MODULE}, ?MODULE, Args). init([]) -> RestartStrategy = one_for_one, MaxRestarts = 1000, MaxTimeBetRestarts = 3600, TimeoutTime = 5000, SupFlags = {RestartStrategy, MaxRestarts, MaxTimeBetRestarts}, % Servers EventManager = {pm_event_manager, {pm_event_manager, start_link, []}, permanent, TimeoutTime, worker, dynamic}, MasterServer = {pm_master1, {pm_master, start_link, []}, permanent, TimeoutTime, worker, [pm_master]}, LoadServers = [EventManager,MasterServer], {ok, {SupFlags, LoadServers}}.
Version data entries
62 entries across 62 versions & 3 rubygems