Skip to content

Commit

Permalink
Add docs reference about the default exchange
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanecek committed Sep 10, 2024
1 parent ff411a1 commit 19d022a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion source/Ansible-RabbitMQ/RabbitMQPublisher.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ RabbitMQPublisher class >> configuredBy: aConfigurationAction [

{ #category : 'private - accessing' }
RabbitMQPublisher >> directExchange [


"Ref: https://www.rabbitmq.com/tutorials/amqp-concepts#exchange-default
The default exchange is a direct exchange with no name (empty string) pre-declared by the broker.
It has one special property that makes it very useful for simple applications:
every queue that is created is automatically bound to it with a routing key which is the same as the queue name. "

^ ''
]

Expand Down

0 comments on commit 19d022a

Please sign in to comment.