mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
14 lines
298 B
Objective-C
14 lines
298 B
Objective-C
#import "SSignal.h"
|
|
|
|
#import "SQueue.h"
|
|
#import "SThreadPool.h"
|
|
|
|
@interface SSignal (Dispatch)
|
|
|
|
- (SSignal *)deliverOn:(SQueue *)queue;
|
|
- (SSignal *)deliverOnThreadPool:(SThreadPool *)threadPool;
|
|
- (SSignal *)startOn:(SQueue *)queue;
|
|
- (SSignal *)startOnThreadPool:(SThreadPool *)threadPool;
|
|
|
|
@end
|