mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
400 B
Objective-C
15 lines
400 B
Objective-C
#import <SSignalKit/SSignal.h>
|
|
|
|
#import <SSignalKit/SQueue.h>
|
|
#import <SSignalKit/SThreadPool.h>
|
|
|
|
@interface SSignal (Dispatch)
|
|
|
|
- (SSignal *)deliverOn:(SQueue *)queue;
|
|
- (SSignal *)deliverOnThreadPool:(SThreadPool *)threadPool;
|
|
- (SSignal *)startOn:(SQueue *)queue;
|
|
- (SSignal *)startOnThreadPool:(SThreadPool *)threadPool;
|
|
- (SSignal *)throttleOn:(SQueue *)queue delay:(NSTimeInterval)delay;
|
|
|
|
@end
|