mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 05:14:46 +01:00
25 lines
955 B
C#
25 lines
955 B
C#
using System.Net.Sockets;
|
|
|
|
namespace KianaBH.KcpSharp.Base;
|
|
|
|
/// <summary>
|
|
/// A conversation or a channel over the transport.
|
|
/// </summary>
|
|
public interface IKcpConversation : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Put message into the receive queue of the channel.
|
|
/// </summary>
|
|
/// <param name="packet">
|
|
/// The packet content with the optional conversation ID. This buffer should not contain space for
|
|
/// pre-buffer and post-buffer.
|
|
/// </param>
|
|
/// <param name="cancellationToken">The token to cancel this operation.</param>
|
|
/// <returns>A <see cref="ValueTask" /> that completes when the packet is put into the receive queue.</returns>
|
|
ValueTask InputPakcetAsync(UdpReceiveResult packet, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Mark the underlying transport as closed. Abort all active send or receive operations.
|
|
/// </summary>
|
|
void SetTransportClosed();
|
|
} |