summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2010-08-13 12:21:01 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2010-08-13 12:21:01 +0100
commit3a4cf175f8da0de9eca9619b218a18530c0ac55c (patch)
treef1b9ed93dbb08cd58fbcf74be53a630c33b81c45 /include
parent0b7133e9ec8a891c7dc7779ba635bcb7213914d5 (diff)
downloadrabbitmq-server-git-3a4cf175f8da0de9eca9619b218a18530c0ac55c.tar.gz
only transient messages are immediately ack'd (so far)
In addition, a message sequence number is recorded in the #delivery{} sent to the exchange. If the message doesn't need to be ack'd, this sequence number is undefined.
Diffstat (limited to 'include')
-rw-r--r--include/rabbit.hrl2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index b9abd78857..bf68021702 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -69,7 +69,7 @@
is_persistent}).
-record(ssl_socket, {tcp, ssl}).
--record(delivery, {mandatory, immediate, txn, sender, message}).
+-record(delivery, {mandatory, immediate, txn, sender, message, msg_seq_no}).
-record(amqp_error, {name, explanation, method = none}).
-record(event, {type, props, timestamp}).