File tree 2 files changed +10
-13
lines changed
2 files changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ Concepts
38
38
Bus
39
39
---
40
40
41
- The bus is used to dispatch messages. MessageBus' behavior is in its ordered
41
+ The bus is used to dispatch messages. MessageBus' behaviour is in its ordered
42
42
middleware stack. When using the message bus with Symfony's FrameworkBundle, the
43
43
following middlewares are configured for you:
44
44
45
- #. `` LoggingMiddleware ` ` (logs the processing of your messages)
46
- #. `` SendMessageMiddleware ` ` (enables asynchronous processing)
47
- #. `` HandleMessageMiddleware ` ` (calls the registered handle)
45
+ #. :code: ` LoggingMiddleware ` (logs the processing of your messages)
46
+ #. :code: ` SendMessageMiddleware ` (enables asynchronous processing)
47
+ #. :code: ` HandleMessageMiddleware ` (calls the registered handle)
48
48
49
49
Example::
50
50
@@ -176,11 +176,6 @@ First, create your receiver::
176
176
}
177
177
}
178
178
179
- Your adapter factory
180
- ~~~~~~~~~~~~~~~~~~~~
181
-
182
- TODO.
183
-
184
179
Same bus received and sender
185
180
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
186
181
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ Adapters
73
73
--------
74
74
75
75
The communication with queuing system or third parties is delegated to
76
- libraries for now. The ` built-in AMQP adapter `_ allows you to communicate with
76
+ libraries for now. The built-in AMQP adapter allows you to communicate with
77
77
most of the AMQP brokers such as RabbitMQ.
78
78
79
79
.. note ::
@@ -167,14 +167,16 @@ like this:
167
167
$ bin/console messenger:consume-messages messenger.default_receiver
168
168
169
169
The first argument is the receiver's service name. It might have been created by
170
- your :code: `adapaters ` configuration or it can be your own receiver.
170
+ your :code: `adapters ` configuration or it can be your own receiver.
171
171
172
172
Your own Adapters
173
173
-----------------
174
174
175
175
Learn how to build your own adapters within the Component's documentation. Once
176
- you have built your classes, you can register your adapater to be able to use
177
- it via a DSN in the Symfony application.
176
+ you have built your classes, you can register your adapter factory to be able to
177
+ use it via a DSN in the Symfony application.
178
+
179
+
178
180
179
181
Register your factory
180
182
~~~~~~~~~~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments