Peter Kleiweg
Peter Kleiweg
instead of this: ``` go import ( zmq "github.com/pebbe/zmq4" ) ``` use this: ``` go import ( zmq "github.com/pebbe/zmq4/draft" ) ```
This is too vague
Have a look at [NewReactor](https://godoc.org/github.com/pebbe/zmq4#NewReactor). Perhaps this will solve your needs. There are a few of the included examples that use this. You could wrap a socket in a goroutine,...
If time-outs are an obstacle, then the last option would be best, probably. Instead of the Reactor, you can use the Poller, and include the Pull socket in the llist...
What is the output of `go env` and `go version`? Do you have old sources of zmq4 somewhere?
What about the output of this? go get -v -x github.com/pebbe/zmq4
I asked about this on golang-nuts. https://groups.google.com/forum/#!topic/golang-nuts/VHGqqmpAZDE
@daemonza Can you please do the following: go get -work github.com/pebbe/zmq4 This will print out a directory name were it stores temporary files. Put all the contents of that directory...
I submiitted this bug report: https://github.com/golang/go/issues/19801 Do you get the same error with version 1.7 of Go? Can you test this?
This option is not currently in the master branch of ZeroMQ, so I guess it has been removed again, or renamed. There is a `ZMQ_USE_FD`. Is that what you want?