Akka.IO.DirectByteBufferPool.DirectByteBufferPool C# (CSharp) Метод

DirectByteBufferPool() публичный Метод

public DirectByteBufferPool ( int defaultBufferSize, int maxPoolEntries )
defaultBufferSize int
maxPoolEntries int
        public DirectByteBufferPool(int defaultBufferSize, int maxPoolEntries)
        {
            _defaultBufferSize = defaultBufferSize;
            _maxPoolEntries = maxPoolEntries;
            _pool = new ByteBuffer[maxPoolEntries];
        }