RACQueueScheduler.h 568 B

1234567891011121314151617181920212223
  1. //
  2. // RACQueueScheduler.h
  3. // ReactiveObjC
  4. //
  5. // Created by Josh Abernathy on 11/30/12.
  6. // Copyright (c) 2012 GitHub, Inc. All rights reserved.
  7. //
  8. #import "RACScheduler.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// An abstract scheduler which asynchronously enqueues all its work to a Grand
  11. /// Central Dispatch queue.
  12. ///
  13. /// Because RACQueueScheduler is abstract, it should not be instantiated
  14. /// directly. Create a subclass using the `RACQueueScheduler+Subclass.h`
  15. /// interface and use that instead.
  16. @interface RACQueueScheduler : RACScheduler
  17. @end
  18. NS_ASSUME_NONNULL_END