Copyright © Geoff Cant
Version: 0.3, Apr 17 2026 10:42:53
Behaviours: supervisor.
Authors: Geoff Cant (nem@erlang.geek.nz).
| 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(X1::Args) -> {ok, {SupFlags, [ChildSpec]}} | ignore | {error, Reason}
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
Generated by EDoc