RACQueueScheduler.h 521 B

12345678910111213141516171819
  1. //
  2. // RACQueueScheduler.h
  3. // ReactiveCocoa
  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. /// An abstract scheduler which asynchronously enqueues all its work to a Grand
  10. /// Central Dispatch queue.
  11. ///
  12. /// Because RACQueueScheduler is abstract, it should not be instantiated
  13. /// directly. Create a subclass using the `RACQueueScheduler+Subclass.h`
  14. /// interface and use that instead.
  15. @interface RACQueueScheduler : RACScheduler
  16. @end