美文网首页
RxSwift Chapter 3: Subjects

RxSwift Chapter 3: Subjects

作者: V_coa | 来源:发表于2017-04-04 22:14 被阅读16次

    Subject:既可以当观察者,也可以当被观察者
    PublishSubject:只发射新的值给已经订阅的订阅者,当有新的订阅者,它不发射 next event,但是会发射停止相关的 event (.completed .error)
    BehaviorSubject:重播最近的值,如果有新的订阅者订阅
    ReplaySubject:可以指定重播的数量
    Variable:是 BehaviorSubject 的封装,代表当前状态,而且不会发射 error

    相关文章

      网友评论

          本文标题:RxSwift Chapter 3: Subjects

          本文链接:https://www.haomeiwen.com/subject/npszottx.html