Files
KianaBH3/KcpSharp/Base/DefaultArrayPoolBufferAllocator.cs
2025-06-14 11:15:32 +08:00

11 lines
332 B
C#

namespace KianaBH.KcpSharp.Base;
internal sealed class DefaultArrayPoolBufferAllocator : IKcpBufferPool
{
public static DefaultArrayPoolBufferAllocator Default { get; } = new();
public KcpRentedBuffer Rent(KcpBufferPoolRentOptions options)
{
return KcpRentedBuffer.FromSharedArrayPool(options.Size);
}
}