11 lines
251 B
C#
Raw Normal View History

2019-11-06 14:16:20 +01:00
using System;
namespace Capnp.Rpc.Interception
{
public interface IInterceptionPolicy: IEquatable<IInterceptionPolicy>
{
void OnCallFromAlice(CallContext callContext);
void OnReturnFromBob(CallContext callContext);
}
}