Subscriber
只需继承于它,并定义同名方法,然后 attach_to 即可。
类方法:
attach_to
会把子类里的实例方法让 Notifications 的实例对象进行 subscribe (调用 add_event_subscriber)。
其它类方法:
add_event_subscriber
核心实现。
实例方法:
使用举例:
使用到了 Notifications,依赖于 Notifications 里面的"订阅"。本质还是 Notifications 的订阅,只是为了方便使用而创建出来的。
Note: 原 Notifications 的 instrument 不变,但 subscribe 太麻烦了,所以才有 Subscriber 以及它的各个子类。
最后更新于