-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Symfony Messenger component documentation #9437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
585491d
b40bc71
b26de80
88ba8fe
5c828e4
31a56ee
2493c90
bcfae23
25c0b6e
a15752b
fb88abc
509e149
3fb973c
32403ea
c5306b8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ Adapters | |
-------- | ||
|
||
The communication with queuing system or third parties is delegated to | ||
libraries for now. The `built-in AMQP adapter`_ allows you to communicate with | ||
libraries for now. The built-in AMQP adapter allows you to communicate with | ||
most of the AMQP brokers such as RabbitMQ. | ||
|
||
.. note:: | ||
|
@@ -167,14 +167,16 @@ like this: | |
$ bin/console messenger:consume-messages messenger.default_receiver | ||
|
||
The first argument is the receiver's service name. It might have been created by | ||
your :code:`adapaters` configuration or it can be your own receiver. | ||
your :code:`adapters` configuration or it can be your own receiver. | ||
|
||
Your own Adapters | ||
----------------- | ||
|
||
Learn how to build your own adapters within the Component's documentation. Once | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
It is unclear what is meant by this! |
||
you have built your classes, you can register your adapater to be able to use | ||
it via a DSN in the Symfony application. | ||
you have built your classes, you can register your adapter factory to be able to | ||
use it via a DSN in the Symfony application. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where can I read about how to do this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the "Use your adapter" section :) |
||
|
||
|
||
|
||
Register your factory | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
~~~~~~~~~~~~~~~~~~~~~ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Capitalize.