1 Star 0 Fork 0

王本鑫/amqplib-rpc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.js 408 Bytes
一键复制 编辑 原始数据 按行查看 历史
王本鑫 提交于 2021-04-29 11:22 . Server端增加ready状态
const { Server, Client } = require('./index');
const config = {
url: "amqp://guest:guest@localhost",
};
const server = new Server(config);
const client = new Client(config);
server.on('calc', async (a, b) => {
return a + b;
});
setInterval(() => {
console.log(server.ready);
client.call('calc', [1, 2]).then(sum => {
console.log(sum);
}).catch(e => {
console.error(e);
});
}, 3000);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wbenxin/amqplib-rpc.git
git@gitee.com:wbenxin/amqplib-rpc.git
wbenxin
amqplib-rpc
amqplib-rpc
master

搜索帮助