mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
16 lines
455 B
C#
16 lines
455 B
C#
namespace EggLink.DanhengServer.KcpSharp
|
|
{
|
|
/// <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);
|
|
}
|
|
}
|