mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-23 16:16:08 +02:00
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
|