mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
11 lines
332 B
C#
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);
|
|
}
|
|
} |