2017-02-16 21 views
0

我已閱讀http://www.rabbitmq.com/firehose.html並設法將一些消息追蹤到隊列中。我正在尋找消息的「傳遞模式」(非持久性(1)或持久性(2))。但是,我無法在流水通知格式中看到它。它應該在那裏嗎?RabbitMQ:傳遞模式是流水線通知格式的一部分嗎?

實施例:

Properties 
headers: 
exchange_name: myresults 
routing_keys: 
properties: 
headers: 
x-received-from: 
uri: amqp://obscured1.net/%2F 
exchange: myresults 
redelivered: false 
cluster-name: [email protected] 
node: [email protected] 
vhost:/
connection: [email protected] 
channel: 1 
user: none 
routed_queues: myresults-c-v2 
Payload: {.............} 

回答

0

交付模式是content properties(也稱爲消息屬性,基本性質)中的一個。

+0

那麼,這是一個「是的,它應該在那裏」? 所以,當它不是 - 會發生什麼?是否有默認?在我看來,默認是非持久的(1)。 – Max