Behaviours: supervisor.
| init/1 | The init/1 supervisor callback, initializes the supervisor. |
| start_link/0 | Starts the supervisor. |
init(X1::list()) -> {ok, {{RestartStrategy, MaxR, MaxT}, [ChildSpec]}} | ignore
RestartStrategy = supervisor:strategy()MaxR = pos_integer()MaxT = pos_integer()ChildSpec = supervisor:child_spec()
The init/1 supervisor callback, initializes the supervisor.
start_link() -> {ok, pid()} | {error, term()}
Starts the supervisor.
Generated by EDoc