责任链与拦截器

发布于 2024-12-13 00:40:10 字数 51 浏览 0 评论 0原文

每个请求都通过一组定义的拦截器发送,该组类似于创建为传递链的类。拦截器与责任链有何不同?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑忘罢 2024-12-20 00:40:10

拦截器通常是责任链中的一个环节,处理消息,
请求,并在它们在链中上下移动时回复。拦截器可以检查、修改和扩充每条消息,从而影响消息数据或目的地。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文