Ejemplo n.º 1
0
        public EPollEventModule(int maxEvents = 256)
        {
            Contract.Requires(maxEvents > 0);

            _epoll = new EPollQueue(maxEvents);
            Timer = new EventTimer();
        }
Ejemplo n.º 2
0
 public SelectEventModule()
 {
     Timer = new EventTimer();
 }