Messenger Flashcards

1
Q

How can you ensure no message is being handled syncronously?

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can a message be dispatched to multiple senders?

A

Add both senders inside the config for the specific message:

'My\Message\ToBeSentToTwoSenders': [async, audit]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can the transport a message is using be changed at runtime?

A

Add the “TransportNamesStamp” to the envelope of the message

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can 3rd-party transports be used?

A

Install the extension via composer:

composer require symfony/redis-messenger
composer require symfony/redis-messenger

and so on

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can the “in memory” transport be used?

A
framework:
    messenger:
        transports:
            async_priority_normal: 'in-memory://'
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How long does the in-memory transport remain?

A

Just during the lifetime of the request

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How can symfony-commands be run in an easy way via a message?

A

use the RunCommandMessage

$this->bus->dispatch(new RunCommandMessage('app:my-cache:clean-up --dir=var/temp'))
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How can external processes be run via a message?

A

use the RunProcessMessage

$this->bus->dispatch(new RunProcessMessage(['rm', '-rf', 'var/log/temp/*'], cwd: '/my/custom/working-dir'));
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can you ping external webservices via a message?

A

use the PingWebhookMessage

$this->bus->dispatch(new PingWebhookMessage('GET', 'https://example.com/status'));
How well did you know this?
1
Not at all
2
3
4
5
Perfectly