Exemplo n.º 1
0
        internal Poller(PollerProxy pollerProxy)
        {
            if (pollerProxy == null)
            {
                throw new ArgumentNullException("pollerProxy");
            }

            _pollerProxy     = pollerProxy;
            _pollableSockets = new Dictionary <PollItem, ZmqSocket>();
            Pulse            = new AutoResetEvent(false);
        }
Exemplo n.º 2
0
        internal Poller(PollerProxy pollerProxy)
        {
            if (pollerProxy == null)
            {
                throw new ArgumentNullException("pollerProxy");
            }

            _pollerProxy = pollerProxy;
            _pollableSockets = new Dictionary<PollItem, ZmqSocket>();
            Pulse = new AutoResetEvent(false);
        }