forked from rabbitmq/rabbitmq-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrabbit_channel_sup_sup.erl
More file actions
50 lines (37 loc) · 1.65 KB
/
Copy pathrabbit_channel_sup_sup.erl
File metadata and controls
50 lines (37 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
%%
%% Copyright (c) 2007-2026 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
%%
-module(rabbit_channel_sup_sup).
%% Supervisor for AMQP 0-9-1 channels. Every AMQP 0-9-1 connection has
%% one of these.
%%
%% See also rabbit_channel_sup, rabbit_connection_helper_sup, rabbit_reader.
-behaviour(supervisor).
-export([start_link/0, start_channel/2]).
-export([init/1]).
-include_lib("rabbit_common/include/rabbit.hrl").
%%----------------------------------------------------------------------------
-spec start_link() -> rabbit_types:ok_pid_or_error().
start_link() ->
supervisor:start_link(?MODULE, []).
-spec start_channel(pid(), rabbit_channel_sup:start_link_args()) ->
{'ok', pid(), {pid(), any()}} | {'error', any()}.
start_channel(Pid, Args) ->
supervisor:start_child(Pid, [Args]).
%%----------------------------------------------------------------------------
init([]) ->
?LG_PROCESS_TYPE(channel_sup_sup),
SupFlags = #{strategy => simple_one_for_one,
intensity => 0,
period => 1,
auto_shutdown => never},
ChildSpec = #{id => channel_sup,
start => {rabbit_channel_sup, start_link, []},
restart => transient,
shutdown => infinity,
type => supervisor,
modules => [rabbit_channel_sup]},
{ok, {SupFlags, [ChildSpec]}}.