Behaviours: gen_server.
| code_change/3 | |
| config_change/2 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| start_link/1 | |
| terminate/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}
start_link(PoolId) -> {ok, Pid}
terminate(Reason, State) -> ok
Generated by EDoc