Helios.Net.Bootstrap.ClientBootstrap.WorkerThreads C# (CSharp) Method

WorkerThreads() public method

public WorkerThreads ( int workerThreadCount ) : ClientBootstrap
workerThreadCount int
return ClientBootstrap
        public ClientBootstrap WorkerThreads(int workerThreadCount)
        {
            if (workerThreadCount < 1) throw new ArgumentException("Can't be below 1", "workerThreadCount");
            Workers = workerThreadCount;
            return this;
        }