From 2688d000eef6db57d18bf74684e9cdcab9b42cb8 Mon Sep 17 00:00:00 2001 From: olebedev Date: Mon, 4 Jan 2016 19:08:14 +0500 Subject: [PATCH 1/2] Add event emitter > Emits events using Go way, with wildcard, predicates, cancellation possibilities and many other good wins. See: https://github.com/olebedev/emitter --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7c5b2eee..49343266 100644 --- a/README.md +++ b/README.md @@ -511,6 +511,7 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis * [dbus](https://github.com/godbus/dbus) - Native Go bindings for D-Bus. * [EventBus](https://github.com/asaskevich/EventBus) - The lightweight event bus with async compatibility. +* [emitter](https://github.com/olebedev/emitter) - Emits events using Go way, with wildcard, predicates, cancellation possibilities and many other good wins. * [go-notify](https://github.com/TheCreeper/go-notify) - Native implementation of the freedesktop notification spec. * [go-nsq](https://github.com/nsqio/go-nsq) - the official Go package for NSQ * [gopush-cluster](https://github.com/Terry-Mao/gopush-cluster) - gopush-cluster is a go push server cluster. From 9269ab750d5b787733cb8e9f2388321b6b97544e Mon Sep 17 00:00:00 2001 From: olebedev Date: Wed, 6 Jan 2016 21:33:26 +0500 Subject: [PATCH 2/2] Fix order --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49343266..c8787abf 100644 --- a/README.md +++ b/README.md @@ -510,8 +510,8 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis *Libraries that implement messaging systems* * [dbus](https://github.com/godbus/dbus) - Native Go bindings for D-Bus. -* [EventBus](https://github.com/asaskevich/EventBus) - The lightweight event bus with async compatibility. * [emitter](https://github.com/olebedev/emitter) - Emits events using Go way, with wildcard, predicates, cancellation possibilities and many other good wins. +* [EventBus](https://github.com/asaskevich/EventBus) - The lightweight event bus with async compatibility. * [go-notify](https://github.com/TheCreeper/go-notify) - Native implementation of the freedesktop notification spec. * [go-nsq](https://github.com/nsqio/go-nsq) - the official Go package for NSQ * [gopush-cluster](https://github.com/Terry-Mao/gopush-cluster) - gopush-cluster is a go push server cluster.