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

SmartThreadPool() public method

Constructor
public SmartThreadPool ( int idleTimeout, int maxWorkerThreads, int minWorkerThreads ) : System
idleTimeout int Idle timeout in milliseconds
maxWorkerThreads int Upper limit of threads in the pool
minWorkerThreads int Lower limit of threads in the pool
return System
        public SmartThreadPool(
			int idleTimeout,
			int maxWorkerThreads,
			int minWorkerThreads)
        {
            _stpStartInfo = new STPStartInfo
            {
                IdleTimeout = idleTimeout,
                MaxWorkerThreads = maxWorkerThreads,
                MinWorkerThreads = minWorkerThreads,
            };
            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 ) : System
SmartThreadPool