@@ -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);
153153subscribe ();
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() {
182182subscribeMultiple ();
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() {
221221publish ();
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
227227from your process to pause or restart consumption respectively. Pausing consumption can be the first step in SIGINT handling.
228228
229229``` js
0 commit comments