The GenServer Pattern
Learn the pattern for our GenServer.
We'll cover the following...
Parts of a GenServer
There’s a simple pattern at the heart of every bit of functionality we build in a GenServer. It has three moving parts:
- A client function
- A function from the
GenServermodule - A callback
The client function is the public interface, the part that other processes will call. Within the client function, we call a GenServer ...
Ask