12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- %%%----------------------------------------------------------------------
- %%% File : gproc_app.erl
- %%% Purpose : GPROC application callback module
- %%%----------------------------------------------------------------------
- -module(gproc_app).
- -behaviour(application).
- %% application callbacks
- -export([start/0, start/2, stop/1]).
- %%%----------------------------------------------------------------------
- %%% Callback functions from application
- %%%----------------------------------------------------------------------
- %%----------------------------------------------------------------------
- %% Func: start/2
- %% Returns: {ok, Pid} |
- %% {ok, Pid, State} |
- %% {error, Reason}
- %%----------------------------------------------------------------------
- start() ->
- start(normal, []).
- start(_Type, StartArgs) ->
- case gproc_sup:start_link(StartArgs) of
- {ok, Pid} ->
- {ok, Pid};
- Error ->
- Error
- end.
- %%----------------------------------------------------------------------
- %% Func: stop/1
- %% Returns: any
- %%----------------------------------------------------------------------
- stop(_State) ->
- ok.
- %%%----------------------------------------------------------------------
- %%% Internal functions
- %%%----------------------------------------------------------------------
|