Behaviours: supervisor.
| get_pool/1 | Get a pool. |
| init/1 | |
| pools/0 | Get All Pools supervisored by the ecpool_sup. |
| start_link/0 | Start supervisor. |
| start_pool/3 | Start a pool. |
| stop_pool/1 | Stop a pool. |
get_pool(Pool::atom()) -> undefined | pid()
Get a pool.
init(X1) -> any()
pools() -> [{atom(), pid()}]
Get All Pools supervisored by the ecpool_sup.
start_link() -> {ok, pid()} | {error, term()}
Start supervisor.
start_pool(Pool::atom(), Mod::atom(), Opts::[tuple()]) -> {ok, pid()} | {error, term()}
Start a pool.
stop_pool(Pool::atom()) -> ok | {error, term()}
Stop a pool.
Generated by EDoc