emqx_plugins_sup.erl 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. %%--------------------------------------------------------------------
  2. %% Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved.
  3. %%
  4. %% Licensed under the Apache License, Version 2.0 (the "License");
  5. %% you may not use this file except in compliance with the License.
  6. %% You may obtain a copy of the License at
  7. %%
  8. %% http://www.apache.org/licenses/LICENSE-2.0
  9. %%
  10. %% Unless required by applicable law or agreed to in writing, software
  11. %% distributed under the License is distributed on an "AS IS" BASIS,
  12. %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. %% See the License for the specific language governing permissions and
  14. %% limitations under the License.
  15. %%--------------------------------------------------------------------
  16. -module(emqx_plugins_sup).
  17. -behaviour(supervisor).
  18. -export([start_link/0]).
  19. -export([init/1]).
  20. start_link() ->
  21. supervisor:start_link({local, ?MODULE}, ?MODULE, []).
  22. init([]) ->
  23. SupFlags =
  24. #{
  25. strategy => one_for_one,
  26. intensity => 100,
  27. period => 10
  28. },
  29. ChildSpecs = [child_spec(emqx_plugins_serde)],
  30. {ok, {SupFlags, ChildSpecs}}.
  31. child_spec(Mod) ->
  32. #{
  33. id => Mod,
  34. start => {Mod, start_link, []},
  35. restart => permanent,
  36. shutdown => 5_000,
  37. type => worker
  38. }.