View Source Agens.Supervisor (agens v0.2.0)
The Supervisor module for the Agens application.
Agens.Supervisor starts a DynamicSupervisor for managing Agens.Serving and Agens.Job processes.
In order to use Agens simply add Agens.Supervisor to your application supervision tree:
Supervisor.start_link(
[
{Agens.Supervisor, name: Agens.Supervisor}
],
strategy: :one_for_one
)