责任链与拦截器
每个请求都通过一组定义的拦截器发送,该组类似于创建为传递链的类。拦截器与责任链有何不同?
Every request is sent through interceptors defined in a group similar to classes created as chain for passing through. How different is the Interceptors vs Chain of Responsibility?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
拦截器通常是责任链中的一个环节,处理消息,
请求,并在它们在链中上下移动时回复。拦截器可以检查、修改和扩充每条消息,从而影响消息数据或目的地。
http://steve.vinoski.net/pdf/IEEE-Chain_of_Responsibility.pdf
An interceptor is generally one link in a chain of responsibility, processing messages,
requests, and replies as they move up and down the chain. Interceptors can examine, modify, and augment each message, and thus influence the message data or destination.
http://steve.vinoski.net/pdf/IEEE-Chain_of_Responsibility.pdf