diff options
author | Matthew Sackman <matthew@rabbitmq.com> | 2010-08-02 14:51:24 +0100 |
---|---|---|
committer | Matthew Sackman <matthew@rabbitmq.com> | 2010-08-02 14:51:24 +0100 |
commit | 9ac32968f7d815d40374810f3fd96d1bb39c7fa5 (patch) | |
tree | c794c9c061f82b9439528ff76a4b17432297cb0d /src/rabbit_channel_sup_sup.erl | |
parent | 35da42c0701892fd3f19f5c2a33e07d139fb198c (diff) | |
parent | 3cc4df9f81d8ce35ef337ba8f4f8bc0c1fdaefb3 (diff) | |
download | rabbitmq-server-9ac32968f7d815d40374810f3fd96d1bb39c7fa5.tar.gz |
A ginormous amount of debitrotting, rewriting, debugging and refactoring to merge default into bug 15930
Diffstat (limited to 'src/rabbit_channel_sup_sup.erl')
-rw-r--r-- | src/rabbit_channel_sup_sup.erl | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/rabbit_channel_sup_sup.erl b/src/rabbit_channel_sup_sup.erl new file mode 100644 index 00000000..f608b724 --- /dev/null +++ b/src/rabbit_channel_sup_sup.erl @@ -0,0 +1,49 @@ +%% The contents of this file are subject to the Mozilla Public License +%% Version 1.1 (the "License"); you may not use this file except in +%% compliance with the License. You may obtain a copy of the License at +%% http://www.mozilla.org/MPL/ +%% +%% Software distributed under the License is distributed on an "AS IS" +%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the +%% License for the specific language governing rights and limitations +%% under the License. +%% +%% The Original Code is RabbitMQ. +%% +%% The Initial Developers of the Original Code are LShift Ltd, +%% Cohesive Financial Technologies LLC, and Rabbit Technologies Ltd. +%% +%% Portions created before 22-Nov-2008 00:00:00 GMT by LShift Ltd, +%% Cohesive Financial Technologies LLC, or Rabbit Technologies Ltd +%% are Copyright (C) 2007-2008 LShift Ltd, Cohesive Financial +%% Technologies LLC, and Rabbit Technologies Ltd. +%% +%% Portions created by LShift Ltd are Copyright (C) 2007-2010 LShift +%% Ltd. Portions created by Cohesive Financial Technologies LLC are +%% Copyright (C) 2007-2010 Cohesive Financial Technologies +%% LLC. Portions created by Rabbit Technologies Ltd are Copyright +%% (C) 2007-2010 Rabbit Technologies Ltd. +%% +%% All Rights Reserved. +%% +%% Contributor(s): ______________________________________. +%% + +-module(rabbit_channel_sup_sup). + +-behaviour(supervisor2). + +-export([start_link/1, start_channel/2]). + +-export([init/1]). + +start_link(Protocol) -> + supervisor2:start_link(?MODULE, [Protocol]). + +init([Protocol]) -> + {ok, {{simple_one_for_one_terminate, 0, 1}, + [{channel_sup, {rabbit_channel_sup, start_link, [Protocol]}, + temporary, infinity, supervisor, [rabbit_channel_sup]}]}}. + +start_channel(Pid, Args) -> + supervisor2:start_child(Pid, Args). |