mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-07-10 09:58:35 +02:00
10 lines
186 B
Objective-C
10 lines
186 B
Objective-C
#import <SSignalKit/SSignal.h>
|
|
|
|
@interface SSignal (Catch)
|
|
|
|
- (SSignal *)catch:(SSignal *(^)(id error))f;
|
|
- (SSignal *)restart;
|
|
- (SSignal *)retryIf:(bool (^)(id error))predicate;
|
|
|
|
@end
|