erlang

by 44 on November 4th, 2009

44

Syntax: No syntax
Show lines - Hide lines - Show in textbox - Download
-module(weazard_app).
 
-behaviour(application).
 
%% Application callbacks
-export([start/2, stop/1]).
 
%%====================================================================
%% Application callbacks
%%====================================================================
%%--------------------------------------------------------------------
%% Function: start(Type, StartArgs) -> {ok, Pid} |
%%                                     {ok, Pid, State} |
%%                                     {error, Reason}
%% Description: This function is called whenever an application
%% is started using application:start/1,2, and should start the processes
%% of the application. If the application is structured according to the
%% OTP design principles as a supervision tree, this means starting the
%% top supervisor of the tree.
%%--------------------------------------------------------------------
start(_Type, Args) ->
		case weazard_sup:start_link(Args) of
				{ok, Pid} ->
						{ok, Pid};
				Error ->
						Error
		end.
 
%%--------------------------------------------------------------------
%% Function: stop(State) -> void()
%% Description: This function is called whenever an application
%% has stopped. It is intended to be the opposite of Module:start/2 and
%% should do any necessary cleaning up. The return value is ignored.
%%--------------------------------------------------------------------
stop(_State) ->
		ok.
 
%%====================================================================
%% Internal functions
%%====================================================================

Leave a Reply

Note: XHTML is allowed. Your email address will never be published.

Subscribe to this comment feed via RSS