application
application
Module
application
Module summary
Generic OTP application functions
Description
In OTP, application denotes a component implementing some specific functionality, that can be started and stopped as a unit, and that can be reused in other systems. This module interacts with application controller, a process started at every Erlang runtime system. This module contains functions for controlling applications (for example, starting and stopping applications), and functions to access information about applications (for example, configuration parameters).
An application is defined by an application specification. The specification is normally located in an application resource file named Application.app
, where Application
is the application name. For details