コード例 #1
0
ファイル: ZmqContext.cs プロジェクト: redchew-fork/Zebus
        public ZmqContext()
        {
            Handle = ZmqNative.ctx_new();

            if (Handle == IntPtr.Zero)
            {
                ZmqUtil.ThrowLastError("Could not create ZMQ context");
            }
        }