Learn RxSwift---2.subjects

1.RxSwift中Subject

subject是Observable和observer之间的桥梁,一个subject局势一个obserable也是一个Observer,他既可以发出事件,也可以监听事件

其中 Observable 是观察得到的结果  Observer则负责发出事件  详见 其中自定义事件 的示例

--1.PublishSubject

当你订阅publishSubject 的时候,你只能接受到订阅之后发生的事件, subject.OnNext()发出的onnext事件 对应的还有�onerror()  和 onCompleted() 事件

Learn RxSwift---2.subjects_第1张图片
publish subject  只能接收订阅之后的事件 


publish subject log

--2.replaySubject


Learn RxSwift---2.subjects_第2张图片
replaySubject订阅事件


replay subject log

--3.behavior subject 


Learn RxSwift---2.subjects_第3张图片
behavior subject 


Learn RxSwift---2.subjects_第4张图片
behavior subject log 

--4.Variable 


Learn RxSwift---2.subjects_第5张图片
variable  
Learn RxSwift---2.subjects_第6张图片
variable log

你可能感兴趣的:(Learn RxSwift---2.subjects)