using System; namespace Capnp.Rpc.Interception { public interface IInterceptionPolicy: IEquatable { void OnCallFromAlice(CallContext callContext); void OnReturnFromBob(CallContext callContext); } }