This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Messenger
Fabien Potencier 6c539e1408 feature #28190 [Messenger] Add a --bus option to the messenger:consume-messages command (chalasr, sroze)
This PR was merged into the 4.2-dev branch.

Discussion
----------

[Messenger] Add a --bus option to the messenger:consume-messages command

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | yes
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | todo

Making it compatible with the multi-bus feature.

Commits
-------

e3f1eecbc1 Bus argument is a required option when multiple buses are defined
539cb62ffe [Messenger] Add a --bus option to the messenger:consume-messages command
2018-08-29 11:09:36 +02:00
..
Asynchronous [Messenger] Don't make EnvelopeItemInterface extend Serializable 2018-08-24 15:12:11 +02:00
Command Bus argument is a required option when multiple buses are defined 2018-08-28 11:10:33 +02:00
DataCollector Merge branch '4.1' 2018-07-26 10:59:12 +02:00
DependencyInjection feature #28190 [Messenger] Add a --bus option to the messenger:consume-messages command (chalasr, sroze) 2018-08-29 11:09:36 +02:00
Exception Revert "feature #26702 Mark ExceptionInterfaces throwable (ostrolucky)" 2018-05-30 09:26:09 +02:00
Handler [Messenger][DX] Uses custom method names for handlers 2018-05-11 15:00:51 +02:00
Middleware [Messenger] Don't make EnvelopeItemInterface extend Serializable 2018-08-24 15:12:11 +02:00
Tests feature #28190 [Messenger] Add a --bus option to the messenger:consume-messages command (chalasr, sroze) 2018-08-29 11:09:36 +02:00
Transport [Messenger] Don't make EnvelopeItemInterface extend Serializable 2018-08-24 15:12:11 +02:00
CHANGELOG.md Bus argument is a required option when multiple buses are defined 2018-08-28 11:10:33 +02:00
composer.json Merge branch '4.1' 2018-05-31 12:18:23 +02:00
Envelope.php [Messenger] Activation middleware decorator 2018-05-20 13:30:39 +02:00
EnvelopeAwareInterface.php feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi) 2018-05-09 15:46:25 +01:00
EnvelopeItemInterface.php [Messenger] Don't make EnvelopeItemInterface extend Serializable 2018-08-24 15:12:11 +02:00
MessageBus.php Ensure the envelope is passed back and can be altered 2018-05-09 15:46:48 +01:00
MessageBusInterface.php feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi) 2018-05-09 15:46:25 +01:00
phpunit.xml.dist [Messenger] Add a new Messenger component 2018-03-23 09:01:52 +01:00
README.md [Messenger] Add a new Messenger component 2018-03-23 09:01:52 +01:00
TraceableMessageBus.php [Messenger][Profiler] Show dispatch caller 2018-05-30 12:45:35 +02:00
Worker.php feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi) 2018-05-09 15:46:25 +01:00

Messenger Component

This Component is experimental. Experimental features are not covered by Symfony's BC-break policy.

The Messenger component helps application send and receive messages to/from other applications or via message queues.

Resources