namespace FastGithub.FlowAnalyze { /// /// 流量分析器 /// public interface IFlowAnalyzer { /// /// 收到数据 /// /// /// void OnFlow(FlowType flowType, int length); /// /// 获取速率 /// /// FlowStatistics GetFlowStatistics(); } }