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