Current section
Files
Jump to
Current section
Files
src/simple_cache_sup.erl
-module(simple_cache_sup).
-behaviour(supervisor).
%% API
-export([start_link/0]).
%% Supervisor callbacks
-export([init/1]).
-define(CHILD(I, Type), {I, {I, start_link, []}, permanent, 5000, Type, [I]}).
%%=============================================================================
%% API functions
%%=============================================================================
start_link() ->
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
%%=============================================================================
%% Supervisor callbacks
%%=============================================================================
init([]) ->
Children = [?CHILD(simple_cache_server, worker)],
{ok, { {one_for_one, 5, 10}, Children} }.