Skip to content

Commit 49af404

Browse files
read me changes.
1 parent d2244e1 commit 49af404

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ const queueManagerInstance = await QueueManager.getInstance(configStrategy);
7171
- <b>kind</b> [string] (mandatory) Kind of the message.
7272
- <b>payload</b> [object] (optional) Payload to identify message and extra info.
7373

74-
## Examples:
74+
## Examples
7575

76-
### Subscribe to events published through RabbitMQ:
76+
### Subscribe to events published through RabbitMQ
7777

7878
```js
7979
// Config Strategy for PLG Works Queue.
@@ -153,7 +153,7 @@ process.on('rmq_error', rmqError);
153153
subscribe();
154154
```
155155

156-
### Listen to multiple events with one subscriber.
156+
### Listen to multiple events with one subscriber
157157

158158
```js
159159
// Config Strategy for PLG Works Queue.
@@ -182,9 +182,9 @@ const subscribeMultiple = async function() {
182182
subscribeMultiple();
183183
```
184184

185-
### Publish Notifications:
185+
### Publish Notifications
186186

187-
- All events are by default published using EventEmitter and if configured, through RabbitMQ as well.
187+
All events are by default published using EventEmitter and if configured, through RabbitMQ as well.
188188

189189
```js
190190
// Config Strategy for PLG Works Queue.
@@ -221,9 +221,9 @@ const publish = async function() {
221221
publish();
222222
```
223223

224-
### Pause and Restart queue consumption:
224+
### Pause and Restart queue consumption
225225

226-
- We also support pause and start queue consumption. According to your logical condition, you can fire below events
226+
We also support pause and start queue consumption. According to your logical condition, you can fire below events
227227
from your process to pause or restart consumption respectively. Pausing consumption can be the first step in SIGINT handling.
228228

229229
```js

0 commit comments

Comments
 (0)