mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-13 07:11:44 +01:00
18 lines
298 B
C#
18 lines
298 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Capnp.FrameTracing
|
|
{
|
|
public enum FrameDirection
|
|
{
|
|
Rx,
|
|
Tx
|
|
}
|
|
|
|
public interface IFrameTracer: IDisposable
|
|
{
|
|
void TraceFrame(FrameDirection direction, WireFrame frame);
|
|
}
|
|
}
|