Created
August 11, 2015 01:44
-
-
Save hammett/3c82cc3913e0e78a11b8 to your computer and use it in GitHub Desktop.
reminds me of MEF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% 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 Developer of the Original Code is GoPivotal, Inc. | |
%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved. | |
%% | |
-module(rabbit_exchange_type_topic). | |
-include("rabbit.hrl"). | |
-behaviour(rabbit_exchange_type). | |
-export([description/0, serialise_events/0, route/2]). | |
-export([validate/1, validate_binding/2, | |
create/2, delete/3, policy_changed/2, add_binding/3, | |
remove_bindings/3, assert_args_equivalence/2]). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment