jhn_elixir v0.1.2 JhnElixir.GenServer behaviour
Link to this section Summary
Link to this section Types
Link to this section Functions
Link to this function
abcast(nodes \\ [node() | Node.list()], name, message)
Link to this function
call(server, request, timeout \\ 5000)
Link to this function
multi_call(nodes \\ [node() | Node.list()], name, req, timeout \\ :infinity)
Link to this function
start(module, init_arg, options \\ [])
Link to this function
stop(server, reason \\ :normal, timeout \\ :infinity)
Link to this section Callbacks
Link to this callback
handle_call(request, from, state)
(optional)handle_call(request :: term(), from(), state :: term()) :: {:reply, reply, new_state} | {:reply, reply, new_state, timeout() | :hibernate | {:continue, term()}} | {:noreply, new_state} | {:noreply, new_state, timeout() | :hibernate | {:continue, term()}} | {:stop, reason, reply, new_state} | {:stop, reason, new_state} when reply: term(), new_state: term(), reason: term()
Link to this callback