Packages

Harbor is a library that helps systems handle overload by providing a buffer and limits. It also has a request deduplication mechanism and can serve as a better alternative to a circuit breaker. It is appropriate to use Harbor if the system is likely to experience overload, if the system is doing...

Current section

Files

Jump to
eharbor src eharbor_app.erl
Raw

src/eharbor_app.erl

%%%-------------------------------------------------------------------
%% @doc eharbor public API
%% @end
%%%-------------------------------------------------------------------
-module(eharbor_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
eharbor_sup:start_link().
stop(_State) ->
ok.
%% internal functions