↧
Answer by g19fanatic for How to communicate between ZeroMQ contexts in...
In order to use the inproc:// transport, all of the sockets need to be sharing the same Context(which is thread-safe). Also if you're using the same Context, you do not need any backend I/O threads for...
View ArticleHow to communicate between ZeroMQ contexts in different Goroutines?
I'm using this as boilerplate, except that in the same program I also have some goroutines that are the workers and connect to the backend endpoint, tcp://127.0.0.1:5560. What I would like to do is...
View Article