RACSubscriber Class Reference
| Inherits from | NSObject |
| Conforms to | RACSubscriber |
| Declared in | RACSubscriber+Private.h RACSubscriber.m |
Instance Methods
didSubscribeWithDisposable:
Sends the subscriber a disposable that represents one of its subscriptions.
- (void)didSubscribeWithDisposable:(RACDisposable *)dDiscussion
A subscriber may receive multiple disposables if it gets subscribed to multiple signals; however, any error or completed events must terminate all subscriptions.
Declared In
RACSubscriber.hsendCompleted
Send completed to subscribers.
- (void)sendCompletedDiscussion
This terminates the subscription, and invalidates the subscriber (such that it cannot subscribe to anything else in the future).
Declared In
RACSubscriber.h