mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-11 15:17:48 +00:00
git-subtree-dir: submodules/SSignalKit git-subtree-mainline:4459dc5b47git-subtree-split:359b2ee7c9
10 lines
172 B
Objective-C
10 lines
172 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface SThreadPoolTask : NSObject
|
|
|
|
- (instancetype)initWithBlock:(void (^)(bool (^)()))block;
|
|
- (void)execute;
|
|
- (void)cancel;
|
|
|
|
@end
|