Christian Köllner 5b8f6722ec nullability step 2
2020-01-11 17:56:12 +01:00

18 lines
454 B
C#

namespace Capnp.Rpc
{
/// <summary>
/// A uni-directional endpoint, used in conjunction with the <see cref="RpcEngine"/>.
/// </summary>
public interface IEndpoint
{
/// <summary>
/// Transmit the given Cap'n Proto message over this endpoint.
/// </summary>
void Forward(WireFrame frame);
/// <summary>
/// Close this endpoint.
/// </summary>
void Dismiss();
}
}