mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +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);
|
|
}
|
|
}
|