This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
typo3-message-bus-rabbitmq [2023/11/11 15:35] – admin | typo3-message-bus-rabbitmq [2023/11/12 00:34] (current) – admin | ||
---|---|---|---|
Line 34: | Line 34: | ||
factory: [ ' | factory: [ ' | ||
arguments: | arguments: | ||
- | # You may want to store this in a environment variable | + | # You may want to store this in a environment variable. |
+ | # Example: amqp://< | ||
$dsn: ' | $dsn: ' | ||
- | $options: | + | |
+ | | ||
+ | auto_setup: true | ||
+ | # Queue options https:// | ||
+ | queues: | ||
+ | MagicRabbit: | ||
+ | flags: 2 | ||
+ | # Exchange options: https:// | ||
+ | exchange: | ||
+ | type: fanout | ||
tags: | tags: | ||
- name: ' | - name: ' | ||
Line 49: | Line 60: | ||
// Unset the default, so that it no longer applies | // Unset the default, so that it no longer applies | ||
unset($GLOBALS[' | unset($GLOBALS[' | ||
- | // Set Webhook-Messages and DynamicsMessage to asynchronous transport via doctrine | + | // Set Webhook-Messages and DynamicsMessage to asynchronous transport via RabbitMQ |
foreach ([WebhookMessageInterface:: | foreach ([WebhookMessageInterface:: | ||
$GLOBALS[' | $GLOBALS[' | ||
} | } | ||
</ | </ | ||
+ | |||
+ | For more details see: | ||
+ | |||
+ | * https:// | ||
+ | * https:// |