You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
首先需要一个发布者Publisher的构造函数,其中定义了一个类型为数组的属性,用来保存订阅者的引用;
接下来所有的Publisher实例都应该能够投送数据,所以在prototype中添加deliver方法;
给予订阅者订阅的能力;
提供unsubscribe方法供订阅者停止对指定发布者的观察;
example