...

/

Creating a start_link

Creating a start_link

Let’s breathe life into our QuizManager GenServer by starting a process.

Role of our application

The primary role of the application will be to provide the following for the boundary layer:

  • Packaging structure

  • Lifecycle support

Here’s how it will work.

When our application starts via Application.start, that function doesn’t call our boundary’s start links directly. Instead, it will call our supervisor’s start_link, and that process will start and monitor our ...