pool_option() = {start_mfa, {module(), atom(), [term()]}} | {size, non_neg_integer()} | {supervisor_period, non_neg_integer()} | {supervisor_intensity, non_neg_integer()} | {supervisor_restart, supervisor:restart()}
| map/2 | |
| pid/1 | |
| pool_size/1 | |
| restart_group/1 | |
| restart_pool/1 | |
| start/0 | |
| start/1 | |
| start_pool/2 | |
| stop/0 | |
| stop_group/1 | |
| stop_pool/1 |
map(PoolName::atom(), Fun::function()) -> [term()] | {error, any()}
pid(PoolName::atom()) -> pid() | {error, any()}
pool_size(PoolName::atom()) -> non_neg_integer() | {error, any()}
restart_group(GroupName::term()) -> ok | {error, any()}
restart_pool(PoolName::atom()) -> boolean() | {error, any()}
start() -> ok | {error, any()}
start(Type::permanent | transient | temporary) -> ok | {error, any()}
start_pool(PoolName::atom(), PoolArgs::[pool_option()]) -> ok | {error, any()}
stop() -> ok
stop_group(GroupName::term()) -> ok | {error, any()}
stop_pool(PoolName::atom()) -> ok | {error, any()}
Generated by EDoc