Files
DanhengServer-OpenSource/DanhengKcpSharp/KcpSharp/DefaultArrayPoolBufferAllocator.cs

11 lines
345 B
C#

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