chore(stomp.erl): Prepare for depot merge
This commit is contained in:
parent
ad0d127ab3
commit
32d16e2b02
9 changed files with 0 additions and 0 deletions
22
net/stomp_erl/src/stomp_sup.erl
Normal file
22
net/stomp_erl/src/stomp_sup.erl
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
-module(stomp_sup).
|
||||
-behaviour(supervisor).
|
||||
|
||||
-export([start_link/0]).
|
||||
-export([init/1]).
|
||||
|
||||
start_link() ->
|
||||
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
|
||||
|
||||
init([]) ->
|
||||
Procs = [stomp_spec()],
|
||||
{ok, {{one_for_one, 1, 5}, Procs}}.
|
||||
|
||||
%% Private
|
||||
|
||||
stomp_spec() ->
|
||||
#{id => stomp_proc,
|
||||
start => {stomp_worker, start_link, []},
|
||||
restart => permanent,
|
||||
shutdown => 5000,
|
||||
type => worker,
|
||||
module => [stomp_worker]}.
|
||||
Loading…
Add table
Add a link
Reference in a new issue