mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-07 08:01:10 +00:00
16 lines
320 B
Objective-C
16 lines
320 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface SQueue : NSObject
|
|
|
|
+ (SQueue *)mainQueue;
|
|
+ (SQueue *)concurrentDefaultQueue;
|
|
+ (SQueue *)concurrentBackgroundQueue;
|
|
|
|
+ (SQueue *)wrapConcurrentNativeQueue:(dispatch_queue_t)nativeQueue;
|
|
|
|
- (void)dispatch:(dispatch_block_t)block;
|
|
|
|
- (dispatch_queue_t)_dispatch_queue;
|
|
|
|
@end
|