mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-15 00:01:46 +01:00
11 lines
251 B
C#
11 lines
251 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Capnp.Rpc.Interception
|
|||
|
{
|
|||
|
public interface IInterceptionPolicy: IEquatable<IInterceptionPolicy>
|
|||
|
{
|
|||
|
void OnCallFromAlice(CallContext callContext);
|
|||
|
void OnReturnFromBob(CallContext callContext);
|
|||
|
}
|
|||
|
}
|