You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
568 B
22 lines
568 B
// |
|
// RACQueueScheduler.h |
|
// ReactiveObjC |
|
// |
|
// Created by Josh Abernathy on 11/30/12. |
|
// Copyright (c) 2012 GitHub, Inc. All rights reserved. |
|
// |
|
|
|
#import "RACScheduler.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
/// An abstract scheduler which asynchronously enqueues all its work to a Grand |
|
/// Central Dispatch queue. |
|
/// |
|
/// Because RACQueueScheduler is abstract, it should not be instantiated |
|
/// directly. Create a subclass using the `RACQueueScheduler+Subclass.h` |
|
/// interface and use that instead. |
|
@interface RACQueueScheduler : RACScheduler |
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|