コード例 #1
0
ファイル: zmq3.go プロジェクト: lucmichalski/goiostat
/*
Terminates the context.

For linger behavior, see: http://api.zeromq.org/3-2:zmq-ctx-destroy
*/
func (ctx *Context) Term() error {
	if ctx.opened {
		ctx.opened = false
		n, err := C.zmq_ctx_destroy(ctx.ctx)
		if n != 0 {
			ctx.err = errget(err)
		}
	}
	return ctx.err
}
コード例 #2
0
ファイル: zmq_3_x.go プロジェクト: ajanicij/gozmq
func destroyZmqContext(c unsafe.Pointer) {
	C.zmq_ctx_destroy(c)
}