mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
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
|