How and why I built rabbitmq client for delphi What is rabbitmq client for delphi? There are many versions of the AMQP client on the official website of rabbitmq, and the whole community is also java, python version of the client is Mainstream .The client of delphi version is only "Habari Client for RabbitMQ", it's a commercial software, requires more than 200 dollar. Looking for github, I finally found 2 open source clients: Https://github.com/lgadina/comotobo Https://github.com/lgadina/rabbitmq-library Rabbitmq-library has no demo, and the comment is almost zero. Comotobo is very simple to write, there is a demo, but to be used for enterprise applications, you have to rewrite on this basis. Rabbitmq-library is relatively complete, except that Tx is not implemented in depth. Others such as Connection, Exchange, Queue, and Channel can be used directly. The problem I wanted to solve Delphi is a native Windows development tool that does not require a virtual machine. With t...