Getting Started with GenServer
Let's define a public interface for the game server process.
We'll cover the following...
GenServers
are everywhere in the Elixir code. Becoming proficient with GenServer
is one of the best things you can do to level up as an Elixir developer. It will require some work on our part. We’ll need to learn how client functions, module functions, and ...