Behaviours: supervisor.
| init/1 | Initialize the supervisor with a one_for_one strategy. |
| start_child/2 | Dynamically start a child worker. |
| start_link/0 | Start the supervisor. |
init(X1) -> any()
Initialize the supervisor with a one_for_one strategy
start_child(Module::module(), Args::[term()]) -> {ok, pid()} | {error, term()}
Dynamically start a child worker
start_link() -> {ok, pid()} | {error, term()}
Start the supervisor
Generated by EDoc