Behaviours: gen_server.
resource() = atom()
| code_change/3 | |
| current_usage/1 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| rate/1 | |
| spawn/2 | |
| spawn/4 | |
| start_child/4 | |
| terminate/2 | |
| which_children/1 |
code_change(OldVsn, State, Extra) -> any()
current_usage(State) -> any()
handle_call(Request, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Info, State) -> any()
init(X1) -> any()
rate(State) -> any()
spawn(Name::resource(), Fun::function() | {module(), atom(), [term()]}) -> {ok, pid()} | {error, overload}
spawn(Name::resource(), Mod::module(), Fun::atom(), Args::[term()]) -> {ok, pid()} | {error, overload}
start_child(Name::resource(), Mod::module(), Fun::atom(), Args::term()) -> {ok, pid()} | {error, overload} | {error, term()}
terminate(Reason, State) -> any()
which_children(Name::resource()) -> [pid()]
Generated by EDoc