We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db3ca9 commit 74f312aCopy full SHA for 74f312a
src/rabbit_policy.erl
@@ -16,6 +16,22 @@
16
17
-module(rabbit_policy).
18
19
+%% Policies is a way to apply optional arguments ("x-args")
20
+%% to exchanges and queues in bulk, using name matching.
21
+%%
22
+%% Only one policy can apply to a given queue or exchange
23
+%% at a time. Priorities help determine what policy should
24
+%% take precedence.
25
26
+%% Policies build on runtime parameters. Policy-driven parameters
27
+%% are well known and therefore validated.
28
29
+%% See also:
30
31
+%% * rabbit_runtime_parameters
32
+%% * rabbit_policies
33
+%% * rabbit_registry
34
+
35
%% TODO specs
36
37
-behaviour(rabbit_runtime_parameter).
0 commit comments