Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit 2242aa3

Browse files
Spelling fixes
1 parent 4d606ab commit 2242aa3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

readme.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,14 +181,14 @@ public class MyNonCyclicMessageHandler : INonCyclicMessageHandler
181181
}
182182
```
183183

184-
`INonCyclicMessageHandler` has its asynchrony analogue IAsyncNonCyclicMessageHandler`.
184+
`INonCyclicMessageHandler` has its asynchronous analogue `IAsyncNonCyclicMessageHandler`.
185185

186186
```c#
187187
public class MyAsyncNonCyclicMessageHandler : IAsyncNonCyclicMessageHandler
188188
{
189189
// Inject anything you want except IQueueService.
190190
readonly ILogger<MyAsyncNonCyclicMessageHandler> _logger;
191-
public MyNonCyclicMessageHandler(ILogger<MyAsyncNonCyclicMessageHandler> logger)
191+
public MyAsyncNonCyclicMessageHandler(ILogger<MyAsyncNonCyclicMessageHandler> logger)
192192
{
193193
_logger = logger;
194194
}
@@ -237,9 +237,11 @@ Exchange sections define how to bind queues and exchanges with each other using
237237

238238
For more information about `appsettings.json` and manual configuration features, see [rabbit-configuration](./docs/rabbit-configuration.md) and [exchange-configuration](./docs/exchange-configuration.md) documentation files.
239239

240-
## Important nuances and advanced usage
240+
## Advanced usage
241241

242-
RabbitMQ client implemented in this library (class which implements `IQueueService`) opens two connections to the RabbitMQ server. One connection is used for message production and the other one is for message consumption. This behavior embedded since 3.2.0 version of the library.
242+
RabbitMQ client implemented in this library (class which implements `IQueueService`) opens two connections to the RabbitMQ server. One connection is used for message production and the other one is for message consumption.
243+
This behavior covered in the [advanced usage documentation file](./docs/advanced-usage.md), dive into it deeply if you want to control the client behavior tighter.
244+
There is also an [example project](.examples/Examples.AdvancedConfiguration) that demonstrates an advances usage of the RabbitMq client.
243245

244246
## Changelog
245247

0 commit comments

Comments
 (0)