Module em_filter_app

em_filter OTP Application Callback.

Behaviours: application.

Authors: Steve Roques.

Description

em_filter OTP Application Callback

Entry point for the em_filter OTP application. Starts the top-level supervisor (em_filter_sup) which manages all filter worker processes.

Function Index

start/2Starts the em_filter application.
stop/1Stops the em_filter application.

Function Details

start/2

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 to em_filter_sup:start_link/0.

stop/1

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