Helios.Reactor.Bootstrap.ServerBootstrap.BufferSize C# (CSharp) Method

BufferSize() public method

public BufferSize ( int bufferSize ) : ServerBootstrap
bufferSize int
return ServerBootstrap
        public ServerBootstrap BufferSize(int bufferSize)
        {
            if (bufferSize < 1024) throw new ArgumentException("Can't be below 1024", "bufferSize");
            BufferBytes = bufferSize;
            return this;
        }