public void Initialize(XmlNode configNode)
 {
     ConfigSection           = new XmlConfigReader(configNode);
     maxWorkerThreadsPerCore = ConfigSection.GetIntSetting("maxWorkerThreadsPerCore");
     minWorkerThreadsPerCore = ConfigSection.GetIntSetting("minWorkerThreadsPerCore");
     maxIOThreadsPerCore     = ConfigSection.GetIntSetting("maxIoThreadsPerCore");
     minIOThreadsPerCore     = ConfigSection.GetIntSetting("minIoThreadsPerCore");
 }