public STPStartInfo(STPStartInfo stpStartInfo) : base(stpStartInfo) { _idleTimeout = stpStartInfo._idleTimeout; _minWorkerThreads = stpStartInfo._minWorkerThreads; _maxWorkerThreads = stpStartInfo._maxWorkerThreads; _threadPriority = stpStartInfo._threadPriority; _pcInstanceName = stpStartInfo._pcInstanceName; }
/// <summary> /// Constructor /// </summary> /// <param name="stpStartInfo">A SmartThreadPool configuration that overrides the default behavior</param> public SmartThreadPool(STPStartInfo stpStartInfo) { _stpStartInfo = new STPStartInfo(stpStartInfo); Initialize(); }
public STPStartInfoRO(STPStartInfo stpStartInfo) { _stpStartInfo = stpStartInfo; }