scala 发布者过滤器

发布于 2024-12-15 06:55:11 字数 120 浏览 2 评论 0原文

我试图弄清楚如何在 Scala 中使用 Publisher.subscribe(Sub, Filter) 方法。如果我理解正确,我可以指定订户通知哪些方法,哪些不通知?

有人愿意给出这样一个过滤器的语法示例吗?

I'm trying to figure out how to use the Publisher.subscribe(Sub, Filter) method in Scala. If I understand correctly I can there specify which methods the subscriber notifies and which don't?

Would anyone care to give an example of the syntax of such a filter?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

十二 2024-12-22 06:55:11

请注意,Scaladoc 表示:type Filter = (Evt) ⇒ Boolean。因此,从 EvtBoolean 的任何函数都可以,例如 publisher.subscribe(this, _ != null)

Note that Scaladoc says: type Filter = (Evt) ⇒ Boolean. So any function from Evt to Boolean will do, e.g. publisher.subscribe(this, _ != null).

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