Amib.Threading.SmartThreadPool.SmartThreadPool C# (CSharp) Method

SmartThreadPool() public method

Constructor
public SmartThreadPool ( int idleTimeout, int maxWorkerThreads ) : System
idleTimeout int Idle timeout in milliseconds
maxWorkerThreads int Upper limit of threads in the pool
return System
        public SmartThreadPool(
			int idleTimeout,
			int maxWorkerThreads)
        {
            _stpStartInfo = new STPStartInfo
            {
                IdleTimeout = idleTimeout,
                MaxWorkerThreads = maxWorkerThreads,
            };
            Initialize();
        }

Same methods

SmartThreadPool::SmartThreadPool ( ) : System
SmartThreadPool::SmartThreadPool ( STPStartInfo stpStartInfo ) : System
SmartThreadPool::SmartThreadPool ( bool startSuspended ) : System
SmartThreadPool::SmartThreadPool ( int idleTimeout ) : System
SmartThreadPool::SmartThreadPool ( int idleTimeout, int maxWorkerThreads, int minWorkerThreads ) : System
SmartThreadPool