类 ProcessorSlotChain
java.lang.Object
com.alibaba.csp.sentinel.slotchain.AbstractLinkedProcessorSlot<Object>
com.alibaba.csp.sentinel.slotchain.ProcessorSlotChain
- 所有已实现的接口:
ProcessorSlot<Object>
- 直接已知子类:
DefaultProcessorSlotChain
Link all processor slots as a chain.
- 作者:
- qinan.qn
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明abstract voidaddFirst(AbstractLinkedProcessorSlot<?> protocolProcessor) Add a processor to the head of this slot chain.abstract voidaddLast(AbstractLinkedProcessorSlot<?> protocolProcessor) Add a processor to the tail of this slot chain.从类继承的方法 com.alibaba.csp.sentinel.slotchain.AbstractLinkedProcessorSlot
fireEntry, fireExit, getNext, setNext从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait从接口继承的方法 com.alibaba.csp.sentinel.slotchain.ProcessorSlot
entry, exit
-
构造器详细资料
-
ProcessorSlotChain
public ProcessorSlotChain()
-
-
方法详细资料
-
addFirst
Add a processor to the head of this slot chain.- 参数:
protocolProcessor- processor to be added.
-
addLast
Add a processor to the tail of this slot chain.- 参数:
protocolProcessor- processor to be added.
-