Tail adds an interceptor to the tail of the chain.
(interceptor ziface.IInterceptor)
| 32 | |
| 33 | // Tail adds an interceptor to the tail of the chain. |
| 34 | func (ic *chainBuilder) Tail(interceptor ziface.IInterceptor) { |
| 35 | ic.tail = interceptor |
| 36 | } |
| 37 | |
| 38 | // AddInterceptor adds an interceptor to the body of the chain. |
| 39 | func (ic *chainBuilder) AddInterceptor(interceptor ziface.IInterceptor) { |
no outgoing calls
no test coverage detected