文件名称:消息队列服务rmq.zip
文件大小:10KB
文件格式:ZIP
更新时间:2022-08-04 20:10:12
开源项目
rmq 是一个基于 Redis 的消息队列服务,体积小而且易用,客户端基于 Jedis。 示例代码: Producer p = new Producer(new Jedis("localhost"),"some cool topic"); p.publish("some cool message"); Consumer c = new Consumer(new Jedis("localhost"),"consumer identifier","some cool topic"); c.consume(new Callback() { public void onMessage(String message) { //do something here with the message } }); Consumer c = new Consumer(new Jedis("localhost"),"consumer identifier","some cool topic"); String message = c.consume(); String message = c.read();
【文件预览】:
rmq-master
----LICENSE.txt(1KB)
----src()
--------test()
--------main()
----README.md(2KB)
----pom.xml(728B)
----.gitignore(42B)