Copyright © 2011-2021 Michael Truog
Version: 2.0.2 May 26 2021 19:26:39 ------------------------------------------------------------------------
Behaviours: gen_server.
Authors: Michael Truog (mjtruog at protonmail dot com).
child_spec() = {Id::any(), StartFunc::{module(), atom(), list()}, Restart::permanent | transient | temporary, Shutdown::brutal_kill | pos_integer(), Type::worker | supervisor, Modules::[module()] | dynamic}
options() = [{max_r, non_neg_integer()} | {max_t, pos_integer()}]
code_change(X1, State, X3) -> any()
get(Name::atom()) -> pid() | undefined
handle_call(Request, X2, State) -> any()
handle_cast(Request, State) -> any()
handle_info(Request, State) -> any()
init(X1) -> any()
pool_worker_start_link(Name::atom(), Supervisor::pid()) -> {ok, pid()} | {error, any()}
start_link(Name::atom(), Count::pos_integer(), ChildSpec::child_spec()) -> {ok, pid()} | {error, any()}
start_link(Name::atom(), Count::pos_integer(), ChildSpec::child_spec(), Options::options()) -> {ok, pid()} | {error, any()}
terminate(X1, X2) -> any()
Generated by EDoc