Behaviours: gen_server.
from() = {pid(), term()}
code_change/3 | |
handle_call/3 | |
handle_cast/2 | |
handle_info/2 | |
init/1 | |
rfc1123/0 | |
start/0 | |
start_link/0 | |
stop/0 | |
terminate/2 |
code_change(OldVsn::term(), State, Extra::term()) -> {ok, State}
handle_cast(Msg::term(), State) -> {noreply, State}
handle_info(Info::any(), State) -> {noreply, State}
init(X1::[]) -> {ok, #state{}}
rfc1123() -> string()
start() -> {ok, pid()}
start_link() -> {ok, pid()}
stop() -> stopped
terminate(Reason::term(), State::term()) -> ok
Generated by EDoc