exodus-framework 2.0.713 → 2.0.717
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"rabitmq.d.ts","sourceRoot":"","sources":["../../src/services/rabitmq.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AACrC,OAAO,EAEL,oBAAoB,EACpB,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,cAAc,CAAC;AACtB,OAAe,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAYhD,cAAM,eAAgB,SAAQ,OAAQ,YAAW,QAAQ;IACvD,UAAU,EAAG,UAAU,CAAC;IACxB,OAAO,EAAG,OAAO,CAAC;IAClB,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,UAAU,CAA2B;;IAMvC,IAAI;IAMV,eAAe;IAKT,OAAO;IAuBP,WAAW,CAAC,CAAC,SAAS,MAAM,oBAAoB,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,oBAAoB,CAAC,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"rabitmq.d.ts","sourceRoot":"","sources":["../../src/services/rabitmq.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AACrC,OAAO,EAEL,oBAAoB,EACpB,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,cAAc,CAAC;AACtB,OAAe,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAYhD,cAAM,eAAgB,SAAQ,OAAQ,YAAW,QAAQ;IACvD,UAAU,EAAG,UAAU,CAAC;IACxB,OAAO,EAAG,OAAO,CAAC;IAClB,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,UAAU,CAA2B;;IAMvC,IAAI;IAMV,eAAe;IAKT,OAAO;IAuBP,WAAW,CAAC,CAAC,SAAS,MAAM,oBAAoB,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,oBAAoB,CAAC,CAAC,CAAC;IAuBzF,gBAAgB,CAAC,CAAC,SAAS,MAAM,oBAAoB,EACzD,KAAK,EAAE,CAAC,EACR,QAAQ,EAAE,sBAAsB,CAAC,CAAC,CAAC;IAgCrC,cAAc,CAAC,MAAM,EAAE,wBAAwB;CAGhD;AAED,eAAe,eAAe,CAAC"}
|
package/lib/services/rabitmq.js
CHANGED
@@ -49,7 +49,7 @@ class RabbitMQService extends _service.default {
|
|
49
49
|
this.log(`✅ Rabbit MQ Connection is ready`);
|
50
50
|
this.channel = await this.connection.createChannel();
|
51
51
|
this.channel.assertExchange(_app.Core.settings.getMessaging().exchanges.main, 'topic', {
|
52
|
-
durable:
|
52
|
+
durable: true
|
53
53
|
});
|
54
54
|
this.log(`🛸 Created RabbitMQ Channel successfully`);
|
55
55
|
this.registerHandles();
|
@@ -64,7 +64,10 @@ class RabbitMQService extends _service.default {
|
|
64
64
|
if (!this.channel) {
|
65
65
|
await this.connect();
|
66
66
|
}
|
67
|
-
this.channel.publish(_app.Core.settings.getMessaging().exchanges.main, queue, Buffer.from(JSON.stringify(data))
|
67
|
+
this.channel.publish(_app.Core.settings.getMessaging().exchanges.main, queue, Buffer.from(JSON.stringify(data)), {
|
68
|
+
messageId: new Date().toDateString(),
|
69
|
+
persistent: true
|
70
|
+
});
|
68
71
|
|
69
72
|
/* this.channel.sendToQueue(queue, Buffer.from(JSON.stringify(data)), {
|
70
73
|
messageId: new Date().toDateString(),
|
@@ -75,10 +78,11 @@ class RabbitMQService extends _service.default {
|
|
75
78
|
}
|
76
79
|
}
|
77
80
|
async consumeFromQueue(queue, callBack) {
|
78
|
-
await this.channel.assertQueue(
|
81
|
+
const assertation = await this.channel.assertQueue(_app.Core.settings.getAppication().appId, {
|
79
82
|
durable: true
|
80
83
|
});
|
81
|
-
this.channel.
|
84
|
+
await this.channel.bindQueue(assertation.queue, _app.Core.settings.getMessaging().exchanges.main, queue);
|
85
|
+
this.channel.consume(assertation.queue, msg => {
|
82
86
|
{
|
83
87
|
if (!msg) {
|
84
88
|
return this.log(`Invalid incoming message in`);
|