goczmq
goczmq copied to clipboard
goczmq is a golang wrapper for CZMQ.
https://github.com/zeromq/goczmq/blob/3608957065cc464ecd834d35f58402458610a645/goczmq.go#L142 `Detroy` must be `Destroy`
ZMQ_CLIENT / ZMQ_SERVER support was added to CZMQ ( see: https://github.com/zeromq/czmq/pull/1059 ). I need to add support for these new socket types to GoCZMQ. It should be done in a...
I currently try to implement the "Ironhouse pattern" mentioned [here](http://hintjens.com/blog:49#toc6). The example C code ``` // Start the authenticator and tell it do authenticate clients // via the certificates stored...
Hi, I was wondering if message batching is supported and if yes, what do I need to do to make it happen. Many thanks in advance
Hi Can you please help me understand why when I try to send and receive messages with a REQ socket in parallel I receive the error: ` send frame error`?...
Hello, I think it would be really helpful to point out in the documentation that you need to set the identity of the socket before you connect. The following will...
Steps to reproduce: `make test` / `go test -v` / `go test -v -race` Some of the tests fail randomly with `t.Errorf("timeout")` when trying to receive a new message from...
```go func newChanneler(sockType int, endpoints string, subscribe []string, options []SockOption) *Channeler { ... c := &Channeler{ id: rand.Int63(), ... } c.commandAddr = fmt.Sprintf("inproc://actorcontrol%d", c.id) c.proxyAddr = fmt.Sprintf("inproc://proxy%d", c.id) ... }...
How to i get interrupt signal?
Hello, I am a current zmq newbie in Golang. I just wanted to ask for some example client + server application that supports zmq stream type. I didn't find anything...