Symfony Messenger pre and post-handle messages
4 min readOct 2, 2022
--
π Symfony comes with a lot of useful tools and powerful components, one of which is Messenger.
π Messenger allows you to dispatch a message and consume it a/synchronously, put simply you create an object that holds data and a handler to perform your logic with those data.
π‘You can use it to perform an asynchronous operation, you push your message in aβ¦