Slide 12
Slide 12 text
GenServer
handle_call(message, {from, ref}, state)
handle_cast(message, state)
{:reply, reply, state}
{:reply, reply, state, timeout}
{:reply, reply, state, :hibernate}
{:noreply, state}
{:noreply, state, timeout}
{:noreply, state, :hibernate}
{:stop, reason, reply, state}
{:stop, reason, state}