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
Nicolas Grekas b6f3932004 feature #29303 [Messenger] add welcome notice when running the command (nicolas-grekas)
This PR was merged into the 4.3-dev branch.

Discussion
----------

[Messenger] add welcome notice when running the command

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

The current behavior of `./bin/console messenger:consume-messages` is totally silent: you run it and nothing visible happens.

Here is what is displayed with this PR:
![image](https://user-images.githubusercontent.com/243674/54235039-af0a6c80-4510-11e9-89d8-3c1c55e946c0.png)

Combined with #30539, it gives:
![image](https://user-images.githubusercontent.com/243674/54235156-ed079080-4510-11e9-9d4d-9f27c87e16e5.png)

Commits
-------

673b58b964 [Messenger] add welcome notice when running the command
2019-03-13 16:19:25 +01:00
..
Command [Messenger] add welcome notice when running the command 2019-03-13 08:46:39 +01:00
DataCollector fixed CS 2019-01-16 21:35:37 +01:00
DependencyInjection fixed CS 2019-01-16 21:35:37 +01:00
Exception [Messenger] Added new TransportException which is thrown if transport could not send a message 2019-03-04 11:14:17 +01:00
Handler fixed CS 2019-01-16 21:35:37 +01:00
Middleware fixed CS 2019-01-16 21:35:37 +01:00
Stamp [Messenger] Add handled & sent stamps 2018-11-15 10:18:06 +01:00
Test/Middleware [Messenger] marked the component as experimental for 4.2 2018-10-31 06:40:28 +01:00
Tests Merge branch '4.2' 2019-03-10 11:14:34 +01:00
Transport Merge branch '4.2' 2019-03-10 11:14:34 +01:00
CHANGELOG.md Updated changelog to document changes in AmqpReceiver 2019-03-04 11:14:17 +01:00
composer.json updated version to 4.3 2018-11-26 17:19:01 +01:00
Envelope.php fixed CS 2019-01-16 21:35:37 +01:00
HandleTrait.php [Messenger] Add a trait for synchronous query & command buses 2018-11-20 19:19:09 +01:00
LICENSE Merge branch '3.4' into 4.1 2019-01-03 10:05:57 +01:00
MessageBus.php Merge branch '4.1' into 4.2 2019-01-16 21:31:39 +01:00
MessageBusInterface.php [Messenger] marked the component as experimental for 4.2 2018-10-31 06:40:28 +01:00
phpunit.xml.dist Merge branch '3.4' into 4.1 2018-11-11 20:51:29 +01:00
README.md Fix README about BC promise 2019-03-12 18:23:22 +01:00
TraceableMessageBus.php fixed CS 2019-01-16 21:35:37 +01:00
Worker.php [Messenger] add welcome notice when running the command 2019-03-13 08:46:39 +01:00

Messenger Component

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

This Component is experimental. Experimental features are not covered by Symfony's Backward Compatibility Promise.

Resources