Geolix.Supervisor (Geolix v2.0.0) View Source
This supervisor module takes care of starting the required database adapter
processes. It is automatically started with the :geolix
application.
If you do not want to automatically start the application itself you can
adapt your configuration for a manual supervision approach by adding it
to your :included_applications
:
def application do
[
included_applications: [
# ...
:geolix,
# ...
]
]
end
That done you can add Geolix.Supervisor
to your supervision hierarchy:
children = [
# ...
Geolix.Supervisor,
# ...
]
Link to this section Summary
Functions
Returns a specification to start this module under a supervisor.
Link to this section Functions
Returns a specification to start this module under a supervisor.
See Supervisor
.