You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
232B

  1. namespace HealthMonitor.Core.Pipeline
  2. {
  3. /// <summary>
  4. /// 管道阀门
  5. /// </summary>
  6. public interface IValue<T> where T : class
  7. {
  8. IValue<T> Next { get; set; }
  9. Task Invoke(T context);
  10. }
  11. }