Here you can find Common Lisp code examples from RabbitMQ tutorials.
To run this code you need Cl-Bunny.
You can install it via Quicklisp:
(ql:quickload :cl-bunny)
Note: Cl-Bunny developed and tested using x64 sbcl on GNU/Linux
All our examples are in fact executable sbcl scripts. You can run them from command line
./send.lisp
./receive.lisp
./new-task.lisp
./worker.lisp
Tutorial three: Publish/Subscribe
./receive-logs.lisp
./emit-log.lisp
./receive-logs-direct.lisp
./emit-log-direct.lisp
./receive-logs-topic.lisp
./emit-log-topic.lisp
./rpc-server.lisp
./rpc-client.lisp
To learn more, visit Cl-Bunny documentation site.