Rename and move ASMainSerialQueue to its own class

This commit is contained in:
Garrett Moon
2015-12-11 10:53:06 -08:00
parent 066596314e
commit 941a732fd6
4 changed files with 97 additions and 61 deletions

View File

@@ -0,0 +1,15 @@
//
// ASMainSerialQueue.h
// AsyncDisplayKit
//
// Created by Garrett Moon on 12/11/15.
// Copyright © 2015 Facebook. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ASMainSerialQueue : NSObject
- (void)performBlockOnMainThread:(dispatch_block_t)block;
@end