Behaviours: gen_server.
| code_change/3 | |
| connect_nodes/0 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| start_link/0 | |
| terminate/2 |
code_change(OldVsn::any(), State::#state{}, Extra::any()) -> {ok, #state{}}
connect_nodes() -> ok
handle_call(Request::any(), From::any(), State::#state{}) -> {reply, Reply::any(), #state{}} | {reply, Reply::any(), #state{}, Timeout::non_neg_integer()} | {noreply, #state{}} | {noreply, #state{}, Timeout::non_neg_integer()} | {stop, Reason::any(), Reply::any(), #state{}} | {stop, Reason::any(), #state{}}
handle_cast(Msg::any(), State::#state{}) -> {noreply, #state{}} | {noreply, #state{}, Timeout::non_neg_integer()} | {stop, Reason::any(), #state{}}
handle_info(Info::any(), State::#state{}) -> {noreply, #state{}} | {noreply, #state{}, Timeout::non_neg_integer()} | {stop, Reason::any(), #state{}}
init(X1::[]) -> {ok, #state{}} | {ok, #state{}, Timeout::non_neg_integer()} | ignore | {stop, Reason::any()}
start_link() -> {ok, pid()} | {error, any()}
terminate(Reason::any(), State::#state{}) -> terminated
Generated by EDoc, Aug 9 2023, 00:05:03.