Behaviours: gen_server.
state() = #state{}
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| request/4 | |
| start_link/1 | |
| stop/1 | |
| terminate/2 |
handle_call(X1::get_client, From::gen_server:from(), State::state()) -> {reply, term(), state()} | {noreply, state()}
handle_cast(X1::{free_client, pid()} | stop, State::state()) -> {noreply, state()} | {stop, term(), state()}
init(X1::[any()]) -> {ok, state(), 0}
request(Pool::pid(), Path::iodata(), Hdrs::gun:req_headers(), Body::iodata()) -> term()
start_link(Args::list()) -> any()
stop(Pool::pid()) -> ok
terminate(Reason::term(), State::state()) -> ok
Generated by EDoc