Registry / messaging / zeromq-goczmq

zeromq-goczmq

JSON →
library4.1.0+incompatiblegogounverified

A Go binding for CZMQ 3, providing high-level ZeroMQ messaging patterns.

go get github.com/zeromq/goczmq
INSTALL
IMPORT
SIG · ZEROMQ-GOCZMQ
Z
zeromq-goczmq
messaginggov4.1.0+incompatible
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

goczmq
github.com/zeromq/goczmq

Create a REQ socket and send/receive a message.

package main import ( "fmt" "github.com/zeromq/goczmq" ) func main() { sock, err := goczmq.NewReq("tcp://localhost:5555") if err != nil { panic(err) } defer sock.Destroy() sock.SendFrame([]byte("Hello"), 0) msg, _ := sock.RecvMessage() fmt.Println(string(msg[0])) }
Debug
Known issues
breakingRequires CZMQ and ZeroMQ C libraries to be installed; not a pure Go implementation.
fix
Install libczmq-dev (or equivalent) on your system.
affects: all
Upgrade
Version history
4.1.0+incompatiblelatest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
36 hits · last 30 days
node
28
OpenAI (training)
1
Resources
zeromq-goczmq — go get zeromq-goczmq · libregistry