mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-30 23:20:28 +00:00

git-subtree-dir: submodules/SSignalKit git-subtree-mainline: 4459dc5b47e7db4ea1adb3a43a4324d1c2f9feab git-subtree-split: 359b2ee7c9f20f99f221f78e307369ef5ad0ece2
14 lines
284 B
Objective-C
14 lines
284 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class SThreadPool;
|
|
@class SThreadPoolTask;
|
|
|
|
@interface SThreadPoolQueue : NSObject
|
|
|
|
- (instancetype)initWithThreadPool:(SThreadPool *)threadPool;
|
|
- (void)addTask:(SThreadPoolTask *)task;
|
|
- (SThreadPoolTask *)_popFirstTask;
|
|
- (bool)_hasTasks;
|
|
|
|
@end
|