RAC篇(上) - RACSignal & RACSubject

Posted diyigechengxu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RAC篇(上) - RACSignal & RACSubject相关的知识,希望对你有一定的参考价值。

RACSignal:

这是一个冷信号,每调用一次subscribeNext就会触发一次 didSubscribe的回调,进行信号的发送。

 

-(RACSignal *)createSignal:(RACDisposable * (^)(id<RACSubscriber> subscriber))didSubscribe

 初始化RACDynamicSignal对象,且RACDynamicSignal会用copy的方式持有didSubscribe这个block。稍后在RACDynamicSignal中调用.

 

当有调用

- (RACDisposable *)subscribeNext:(void (^)(id x))nextBlock error:(void (^)(NSError *error))errorBlock completed:(void (^)(void))completedBlock

会初始化RACSubscriber对象,RACSubscriber会用copy的方式持有nextBlock、errorBlock、completedBlock。且RACSubscriber内部拥有个RACCompoundDisposable,在调用RACCompoundDisposable的dispose的时候,会对nextBlock、errorBlock、completedBlock进行清空处理。接着调用:

- (RACDisposable *)subscribe:(id<RACSubscriber>)subscriber

传递这个RACSubscriber到RACDynamicSignal中,初始化RACCompoundDisposable对象。并调用RACPassthroughSubscriber的初始化方法:

- (instancetype)initWithSubscriber:(id<RACSubscriber>)subscriber signal:(RACSignal *)signal disposable:(RACCompoundDisposable *)disposable
RACPassthroughSubscriber对象以strong的方式持有subscriber、disposable,以unsafe_unretained的方式持有signal。

紧接着调用RACDynamicSignal的didSubscribe属性,这是一个block,传递的其实是上面创建的RACPassthroughSubscriber,在调用RACDynamicSignal的sendnext方法,调用RACPassthroughSubscriber的innerSubscribe的RACSubscriber中sendnext方法。接着触发RACSubscriber的nextblock。

技术图片

RACSubject:
热信号是主动的,即使你没有订阅事件,它仍然会时刻推送。热信号可以有多个订阅者,是一对多,信号可以与订阅者共享信息。
[RACSubject subject];
进行初始化过程,设置两个属性值:RACCompoundDisposable和subscribers(subscriber订阅者容器)
通过调用
- (RACDisposable *)subscribeNext:(void (^)(id x))nextBlock error:(void (^)(NSError *error))errorBlock completed:(void (^)(void))completedBlock;

 - (RACDisposable *)subscribe:(id<RACSubscriber>)subscriber;

添加订阅者。

[RACSubject sendNext:];

来发送信号数据。遍历当前拥有的所有订阅者,调用id<RACSubscriber> 的sendNext(),触发nextBlock。

RACReplySubject:

跟RACSubject相比,多了一点“记忆功能”,通过valuesReceived数组保存之前发送的数据,再添加新的订阅者的时候能够拿到历史数据。
 

以上是关于RAC篇(上) - RACSignal & RACSubject的主要内容,如果未能解决你的问题,请参考以下文章

OC + RAC RACSignal 基本使用

OC + RAC RACSubject和RACSignal的区别

RAC篇(中) - 信号的各种转换和操作

iOS开发进阶篇——FRP与ReactiveCocoa的介绍

RAC基础笔记

OC+RAC 核心方法bind