Bloom.Api.ServerBase.ServerBase C# (CSharp) Method

ServerBase() protected method

protected ServerBase ( ) : System
return System
        protected ServerBase()
        {
            // limit the number of worker threads to the number of processor cores
            // (but at least 2, since we sometimes need one thread to be free to help
            // complete the request that another one is executing...see EnhancedImageServer.FindOrGenerateImage)
            //_workers = new Thread[Math.Max(Environment.ProcessorCount, 2)];
            _queue = new Queue<HttpListenerContext>();
            _stop = new ManualResetEvent(false);
            _ready = new ManualResetEvent(false);
            _listenerThread = new Thread(EnqueueIncomingRequests);
            _listenerThread.Name = "ServerBase Listener Thread";
        }