2019-11-06 14:16:20 +01:00

11 lines
251 B
C#

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