namespace HealthMonitor.Core.Pipeline { public interface IPipeline where T : class { /// /// 添加管道阀门 /// /// void AddValue(IValue v); /// /// 启动管道 /// /// Task Start(T context); } }