Behaviours: gen_server.
| code_change/3 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| pool_info/1 | |
| pool_info/2 | |
| start_link/1 | |
| terminate/2 | |
| worker_init/2 | |
| worker_lockin/1 | |
| worker_lockout/1 | |
| worker_ready/2 | |
| worker_start/2 |
code_change(OldVsn, State, Extra) -> {ok, State} | {error, Reason}
handle_call(Request, From, State) -> {reply, Reply, State} | {reply, Reply, State, Timeout} | {noreply, State} | {noreply, State, Timeout} | {stop, Reason, Reply, State}
handle_cast(Request, State) -> {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State}
handle_info(Request, State) -> {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State}
init(Opts) -> {ok, State} | {ok, State, Timeout} | ignore | {stop, Reason}
pool_info(PoolId) -> [{Item, non_neg_integer()}]
pool_info(PoolId, Item) -> non_neg_integer()
start_link(PoolId) -> {ok, Pid}
terminate(Reason, State) -> ok
worker_init(PoolId, WorkerId) -> ok
worker_lockin(PoolId) -> ok
worker_lockout(PoolId) -> {ok, Pid} | {error, Reason}
worker_ready(PoolId, WorkerId) -> ok
worker_start(PoolId, WorkerId) -> {pk, Pid} | {ok, Pid, Extra} | {error, Reason} | term()
Generated by EDoc