码迷,mamicode.com
首页 > 其他好文 > 详细

RAC篇(上) - RACSignal & RACSubject

时间:2019-12-24 18:27:55      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:ber   pass   info   mic   bsp   unsafe   value   设置   ini   

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

标签:ber   pass   info   mic   bsp   unsafe   value   设置   ini   

原文地址:https://www.cnblogs.com/diyigechengxu/p/12092485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!