Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the content type header in RabbitMQ have any special meaning?

Does the content type header in RabbitMQ have any special meaning, or is it only a standardized way for my producers and consumers to signal what kind of data they are sending? In other words: will messages with certain content types get any special treatment, or is it just bytes, either way?

like image 657
Theo Avatar asked Jul 19 '10 05:07

Theo


1 Answers

RabbitMQ doesn't use the content-type header internally at all. It's for producers and consumers to signal message types, as you guessed.

like image 152
Tony Garnock-Jones Avatar answered Sep 24 '22 08:09

Tony Garnock-Jones