diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2012-05-17 17:52:01 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2012-05-17 17:52:01 +0100 |
| commit | 25484ae2e09a4ad29520b8e7bed6f55c2e3d595d (patch) | |
| tree | 2839bdceb742a39e00705a6346f1a3aa0ba4cd69 /include | |
| parent | 01c649e6ef942271d12f6a7620ca2fdbb8c8464f (diff) | |
| download | rabbitmq-server-git-25484ae2e09a4ad29520b8e7bed6f55c2e3d595d.tar.gz | |
First sketch of a policy mechanism.
Diffstat (limited to 'include')
| -rw-r--r-- | include/rabbit.hrl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 8de31490c8..e8b4a6232e 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -43,11 +43,11 @@ -record(resource, {virtual_host, kind, name}). -record(exchange, {name, type, durable, auto_delete, internal, arguments, - scratches}). + scratches, policy}). -record(exchange_serial, {name, next}). -record(amqqueue, {name, durable, auto_delete, exclusive_owner = none, - arguments, pid, slave_pids, mirror_nodes}). + arguments, pid, slave_pids, mirror_nodes, policy}). %% mnesia doesn't like unary records, so we add a dummy 'value' field -record(route, {binding, value = const}). |
