Namespace StreamExtended.BufferPool
Classes
DefaultBufferPool
A concrete IBufferPool implementation backed by the shared ArrayPool<T>. It is thread-safe and handles both fixed and variable size buffer requests. Note: rented buffers may be larger than the requested size (ArrayPool bucketing) and are not cleared on return, so callers must not assume the buffer length equals the requested size.
Interfaces
IBufferPool
Use this interface to implement custom buffer pool. To use the default buffer pool implementation use DefaultBufferPool class.