Behaviours: supervisor.
| init/1 | supervisor callback. |
| start_child/1 | Start a child. |
| start_child/2 | |
| start_link/0 | API for starting the supervisor. |
| terminate/0 | Terminate all children. |
| terminate_child/2 | Stop a child immediately. |
init(X1) -> any()
supervisor callback.
start_child(Args) -> any()
Start a child.
start_child(EventCount, Args) -> any()
start_link() -> any()
API for starting the supervisor.
terminate() -> any()
Terminate all children.
terminate_child(Supervisor, Pid) -> any()
Stop a child immediately
Generated by EDoc