1

这篇短文源于解决版本兼容性问题. graphql-rabbitmq-subscriptions 这项目已经半年没有Commit了, 和最新的 graphql-subscriptions 有兼容性问题. 最新的 graphql-subscriptions 的GraphQL订阅使用了 AsyncIterator, PubSubEngine增加了一个新的接口asyncIterator, 如下:

export interface PubSubEngine {
  publish(triggerName: string, payload: any): boolean;
  subscribe(triggerName: string, onMessage: Function, options: Object): Promise<number>;
  unsubscribe(subId: number): any;
  asyncIterator<T>(triggers: string | string[]): AsyncIterator<T>;
}

如何运行

clipboard.png

左边开两个GraphiQL的窗口, 右侧登录 rabbitmqadmin 图形管理界面. http://localhost:15672, 找到下面这个Exchange:

clipboard.png

点击进入 http://localhost:15672/#/exch...

然后就可以这样发消息了

clipboard.png

Demo

顺带发一个能跑的DEMO: https://github.com/developerw...

说明

这里是修改的版本: https://github.com/developerw...graphql-rabbitmq-subscriptions 做了修改, 使其支持如下接口:

asyncIterator<T>(triggers: string | string[]): AsyncIterator<T>;

RabbitMQ 默认安装, 不做任何修改. Ubuntu 下的安装命令为 apt-get install rabbitmq-server

Github Issue:
https://github.com/cdmbase/gr...

变更:

2017-09-09:
1.https://github.com/developerw...
使用 rabbitmq-pub-subRabbitMqSingletonConnectionFactory替换RabbitMqConnectionFactory,否则不会重用连接, 并且创建生大量的Queue
clipboard.png

2017-09-10:
现在graphql-rabbitmq-subscriptions包的兼容性已经修复, 直接yarn add graphql-rabbitmq-subscriptions即可.

Pull Request: https://github.com/cdmbase/gr...


developerworks
1.7k 声望266 粉丝

引用和评论

0 条评论