Behaviours: supervisor.
References
| init/1 | supervisor callback - Module:init(Args) -> Result. |
| start_child/5 | Creates the gen_server process as part of a supervision tree. |
| start_child/6 | |
| start_link/0 | Creates a supervisor process as part of a supervision tree. |
| stop/0 | Stop process. |
init(X1) -> any()
supervisor callback - Module:init(Args) -> Result
start_child(SupRef::atom() | pid(), InstanceName::atom(), NumOfDBProcs::integer(), BackendDB::backend_db(), DBRootPath::string()) -> ok | true
Creates the gen_server process as part of a supervision tree
start_child(SupRef::atom() | pid(), InstanceName::atom(), NumOfDBProcs::integer(), BackendDB::backend_db(), DBRootPath::string(), IsStrictCheck::boolean()) -> ok | true
start_link() -> any()
Creates a supervisor process as part of a supervision tree
stop() -> any()
Stop process
Generated by EDoc