I wrote an article about the topic. Feel free to visit it

https://medium.com/@kasvith/lets-write-a-simple-event-bus-in-go-79b9480d8997

On Monday, March 11, 2019 at 10:11:25 AM UTC+5:30, Kasun Vithanage wrote:
>
> Hi all,
>
> I've experience implementing event buses in Java. 
> In Java, I used a singleton where I can register callbacks to methods and 
> fire event from a publisher(maybe from another thread) and propagate it to 
> subscribers.
>
> In Go what would be the best pattern to implement a pub/sub event bus? 
> Are channels are a better choice than using callbacks in this scenario(*one 
> to many* event propagation)?
> Or callbacks are better for this? 
>
> (I need to propagate events *only* to subscribers of the topic)
>
> Regards,
> Kasun
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to