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