mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-07 16:11:13 +00:00
14 lines
331 B
Objective-C
14 lines
331 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;
|
|
|
|
@end
|