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

14 lines
403 B
C#

namespace KianaBH.KcpSharp.Base;
/// <summary>
/// The buffer pool to rent buffers from.
/// </summary>
public interface IKcpBufferPool
{
/// <summary>
/// Rent a buffer using the specified options.
/// </summary>
/// <param name="options">The options used to rent this buffer.</param>
/// <returns></returns>
KcpRentedBuffer Rent(KcpBufferPoolRentOptions options);
}