You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ return [
88
88
],
89
89
];
90
90
```
91
-
To use this extension you should be familiar with the basic concepts of RabbitMQ. If you are not confident in your knowledge I suggest reading [this article](https://mikemadisonweb.github.io/2017/05/04/tldr-series-rabbitmq/).
91
+
To use this extension you should be familiar with the basic concepts of RabbitMQ. If you are not confident in your knowledge I suggest reading [this article](https://mikemadisonweb.github.io/2017/05/03/tldr-series-rabbitmq/).
92
92
93
93
The 'callback' parameter can be a class name or a service name from [dependency injection container](http://www.yiiframework.com/doc-2.0/yii-di-container.html). Starting from Yii version 2.0.11 you can configure your container like this:
name | yes | string | | The exchange name consists of a non-empty sequence of these characters: letters, digits, hyphen, underscore, period, or colon.
338
336
type | yes | string | | Type of the exchange, possible values are `direct`, `fanout`, `topic` and `headers`.
339
-
declare | no | boolean | true | Whether to declare an exchange on sending or consuming messages.
340
337
passive | no | boolean | false | If set to true, the server will reply with Declare-Ok if the exchange already exists with the same name, and raise an error if not. The client can use this to check whether an exchange exists without modifying the server state. When set, all other method fields except name and no-wait are ignored. A declare with both passive and no-wait has no effect.
341
338
durable | no | boolean | false | Durable exchanges remain active when a server restarts. Non-durable exchanges (transient exchanges) are purged if/when a server restarts.
342
339
auto_delete | no | boolean | true | If set to true, the exchange would be deleted when no queues are bound to it anymore.
@@ -352,7 +349,6 @@ As for the queue declaration, all parameters are optional. Even if you do not pr
352
349
parameter | required | type | default | comments
353
350
--- | --- | --- | --- | ---
354
351
name | no | string | '' | The queue name can be empty, or a sequence of these characters: letters, digits, hyphen, underscore, period, or colon.
355
-
declare | no | boolean | true | Whether to declare a queue on sending or consuming messages.
356
352
passive | no | boolean | false | If set to true, the server will reply with Declare-Ok if the queue already exists with the same name, and raise an error if not.
357
353
durable | no | boolean | false | Durable queues remain active when a server restarts. Non-durable queues (transient queues) are purged if/when a server restarts.
358
354
auto_delete | no | boolean | true | If set to true, the queue is deleted when all consumers have finished using it.
0 commit comments