Messenger Flashcards
How can you ensure no message is being handled syncronously?
Add a async transport in the config and use the “*“-wildcard inside the routing for the async transport. Like this, all messages will be handled by the async transport.
How can a message be dispatched to multiple senders?
Add both senders inside the config for the specific message:
'My\Message\ToBeSentToTwoSenders': [async, audit]
How can the transport a message is using be changed at runtime?
Add the “TransportNamesStamp” to the envelope of the message
How can 3rd-party transports be used?
Install the extension via composer:
composer require symfony/redis-messenger
composer require symfony/redis-messenger
and so on
How can the “in memory” transport be used?
framework: messenger: transports: async_priority_normal: 'in-memory://'
How long does the in-memory transport remain?
Just during the lifetime of the request
How can symfony-commands be run in an easy way via a message?
use the RunCommandMessage
$this->bus->dispatch(new RunCommandMessage('app:my-cache:clean-up --dir=var/temp'))
How can external processes be run via a message?
use the RunProcessMessage
$this->bus->dispatch(new RunProcessMessage(['rm', '-rf', 'var/log/temp/*'], cwd: '/my/custom/working-dir'));
How can you ping external webservices via a message?
use the PingWebhookMessage
$this->bus->dispatch(new PingWebhookMessage('GET', 'https://example.com/status'));