13 lines
387 B
C#
13 lines
387 B
C#
namespace KcpSharp
|
|
{
|
|
internal sealed class DefaultArrayPoolBufferAllocator : IKcpBufferPool
|
|
{
|
|
public static DefaultArrayPoolBufferAllocator Default { get; } = new DefaultArrayPoolBufferAllocator();
|
|
|
|
public KcpRentedBuffer Rent(KcpBufferPoolRentOptions options)
|
|
{
|
|
return KcpRentedBuffer.FromSharedArrayPool(options.Size);
|
|
}
|
|
}
|
|
|
|
}
|