Subscriber extends Observer:
用实线空心三角箭头表示泛化:泛化是一种一般与特殊、一般与具体之间关系的描述,具体描述建立在一般描述的基础之上,并对其进行了扩展。
Subscriber 实现了 Subscription 的接口。
实现是一种类与接口的关系,表示类是接口所有特征和行为的实现,在程序中一般通过类实现接口来描述。
表示方法:空心三角形箭头的虚线,实现类指向接口。
看实际的代码:
A Subscriber is the internal Observer
reference kept in the Observable and is
used to unsubscribe observers from within
the observable.