cowboy_sup.erl 1.2 KB

123456789101112131415161718192021222324252627282930
  1. %% Copyright (c) 2011-2014, Loïc Hoguin <essen@ninenines.eu>
  2. %%
  3. %% Permission to use, copy, modify, and/or distribute this software for any
  4. %% purpose with or without fee is hereby granted, provided that the above
  5. %% copyright notice and this permission notice appear in all copies.
  6. %%
  7. %% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. %% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. %% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. %% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. %% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. %% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. %% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. -module(cowboy_sup).
  15. -behaviour(supervisor).
  16. -export([start_link/0]).
  17. -export([init/1]).
  18. -spec start_link() -> {ok, pid()}.
  19. start_link() ->
  20. supervisor:start_link({local, ?MODULE}, ?MODULE, []).
  21. -spec init([])
  22. -> {ok, {{supervisor:strategy(), 10, 10}, [supervisor:child_spec()]}}.
  23. init([]) ->
  24. Procs = [{cowboy_clock, {cowboy_clock, start_link, []},
  25. permanent, 5000, worker, [cowboy_clock]}],
  26. {ok, {{one_for_one, 10, 10}, Procs}}.