Behaviours: gen_server.
node_or_tuple() = atom() | {atom(), term()}
| code_change/3 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| start_client/1 | |
| start_link/0 | |
| stop/0 | |
| terminate/2 |
code_change(OldVersion, X2, Extra) -> any()
handle_call(Msg, Caller, X3) -> any()
handle_cast(Msg, X2) -> any()
handle_info(Msg, X2) -> any()
init(X1) -> any()
start_client(NodeOrTuple::node_or_tuple()) -> {ok, pid()} | {error, any()}
start_link() -> {ok, pid()} | ignore | {error, term()}
stop() -> ok
terminate(Reason, X2) -> any()
Generated by EDoc