mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
19 lines
455 B
C#
19 lines
455 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();
|
|||
|
}
|
|||
|
}
|