ProcessorSlot.java 164 B

1234567891011
  1. package cn.nosum.gateway.chain;
  2. /**
  3. * 处理槽链顶层接口,参考 sentinel
  4. */
  5. public interface ProcessorSlot<T> {
  6. void exec(T t) throws Throwable;
  7. }