mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
11 lines
345 B
C#
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);
|
|
}
|
|
} |