Behaviours: application.
Authors: Steve Roques.
em_filter OTP Application Callback
Entry point for theem_filter OTP application.
Starts the top-level supervisor (em_filter_sup) which manages
all filter worker processes.
| start/2 | Starts the em_filter application. |
| stop/1 | Stops the em_filter application. |
start(StartType::application:start_type(), StartArgs::term()) -> {ok, pid()} | {error, term()}
StartType: Start type as defined by the OTP application behaviour.
StartArgs: Arguments from the mod key of the app descriptor
(unused).
returns: {ok, Pid} where Pid is the supervisor pid.
Starts the em_filter application.
Called automatically by the OTP application controller. Delegates toem_filter_sup:start_link/0.
stop(State::term()) -> ok
State: Application state returned by start/2 (unused).
returns: ok.
Stops the em_filter application.
Called automatically by the OTP application controller after the supervision tree has been shut down.Generated by EDoc