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}
OldVsn = term() | {down, term()}State = term()Extra = term()Reason = term()
handle_call(Request, From, State) -> {reply, Reply, State} | {reply, Reply, State, Timeout} | {noreply, State} | {noreply, State, Timeout} | {stop, Reason, Reply, State}
Request = term()From = {pid(), term()}State = term()Reply = term()Timeout = timeout()Reason = normal | shutdown
handle_cast(Request, State) -> {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State}
Request = term()State = term()Timeout = timeout()Reason = normal | shutdown
handle_info(Request, State) -> {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State}
Request = term()State = term()Timeout = timeout()Reason = normal | shutdown
init(Opts) -> {ok, State} | {ok, State, Timeout} | ignore | {stop, Reason}
Opts = list()State = term()Timeout = timeout()Reason = term()
start_link(PoolId) -> {ok, Pid}
PoolId = atom()Pid = pid()
terminate(Reason, State) -> ok
Reason = term()State = term()
Generated by EDoc