-
Notifications
You must be signed in to change notification settings - Fork 0
/
rabbit.js
146 lines (124 loc) · 3.46 KB
/
rabbit.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
var amqp = require("amqplib/callback_api");
var amqpConn = null;
amqp.connect('amqp://localhost', function(error0, connection) {
if (error0) {
throw error0;
}
connection.createChannel(function(error1, channel) {
if (error1) {
throw error1;
}
var queue = 'hello';
var msg = 'Hello world';
channel.assertQueue(queue, {
durable: false
});
channel.sendToQueue(queue, Buffer.from(msg));
console.log(" [x] Sent %s", msg);
});
setTimeout(function() {
connection.close();
process.exit(0)
}, 500);
});
// function start() {
// amqp.connect("amqp://localhost", function (err, conn) {
// if (err) {
// console.error("[AMQP]", err.message);
// return setTimeout(start, 1000);
// }
// conn.on("error", function (err) {
// if (err.message !== "Connection closing") {
// console.error("[AMQP] conn error", err.message);
// }
// });
// conn.on("close", function () {
// console.error("[AMQP] reconnecting");
// return setTimeout(start, 1000);
// });
// amqpConn = conn;
// whenConnected();
// });
// }
// function whenConnected() {
// startPublisher();
// startWorker();
// }
// var pubChannel = null;
// var offlinePubQueue = [];
// function startPublisher() {
// amqpConn.createConfirmChannel(function (err, ch) {
// if (closeOnerr(err)) return;
// ch.on("error", function (err) {
// console.err("[AMQP] channel error", err.message);
// });
// ch.on("close", function () {
// console.log("[AMQP] channel closed");
// });
// pubChannel = ch;
// while (true) {
// var [exchange, routingKey, content] = offlinePubQueue.shift();
// publish(exchange, routingKey, content);
// }
// });
// }
// function publish(exchange, routingKey, content) {
// try {
// pubChannel.publish(
// exchange,
// routingKey,
// content,
// { persistent: true },
// function (err, ok) {
// if (err) {
// console.error("[AMQP] publish", err);
// offlinePubQueue.push([exchange, routingKey, content]);
// pubChannel.connection.close();
// }
// }
// );
// } catch (e) {
// console.error("[AMQP] publish", e.message);
// offlinePubQueue.push([exchange, routingKey, content]);
// }
// }
// // A worker that acks messages only if processed successfully
// function startWorker() {
// amqpConn.createChannel(function (err, ch) {
// if (closeOnErr(err)) return;
// ch.on("error", function (err) {
// console.error("[AMQP] channel error", err.message);
// });
// ch.on("close", function () {
// console.log("[AMQP] channel closed");
// });
// ch.prefetch(10);
// ch.assertQueue("minio", { durable: true }, function (err, _ok) {
// if (closeOnErr(err)) return;
// ch.consume("minio", processMsg, { noAck: false });
// console.log("Worker is started");
// });
// });
// }
// function processMsg(msg) {
// work(msg, function (ok) {
// try {
// if (ok) ch.ack(msg);
// else ch.reject(msg, true);
// } catch (ejobs) {
// closeOnErr(e);
// }
// });
// }
// function work(msg, cb) {
// console.log("PDF processing of ", msg.content.toString());
// cb(true);
// }
// function closeOnErr(err) {
// if (!err) return false;
// console.error("[AMQP] error", err);
// amqpConn.close();
// return true;
// }
// start();
// // module.exports = start();