Microsoft.Azure.Amqp.InternalBufferManager.PooledBufferManager.BufferPool.SynchronizedBufferPool.SynchronizedBufferPool C# (CSharp) Method

SynchronizedBufferPool() private method

private SynchronizedBufferPool ( int bufferSize, int limit ) : System
bufferSize int
limit int
return System
                    internal SynchronizedBufferPool(int bufferSize, int limit)
                        : base(bufferSize, limit)
                    {
                        this.innerPool = new SynchronizedPool<byte[]>(limit);
                    }
InternalBufferManager.PooledBufferManager.BufferPool.SynchronizedBufferPool