Supervisor module.
Authors: Francesca Gangemi ([email protected]
).
init/1 | Whenever a supervisor is started using supervisor:start_link/2,3, this function is called by the new process to find out about restart strategy, maximum restart frequency and child specifications. |
start_link/0 | Starts the supervisor. |
init(Args) -> {ok, {SupFlags, [ChildSpec]}} | ignore
Whenever a supervisor is started using supervisor:start_link/2,3, this function is called by the new process to find out about restart strategy, maximum restart frequency and child specifications.
start_link() -> {ok, Pid} | ignore | {error, Error}
Starts the supervisor