RACSubscriptionScheduler.h 380 B

12345678910111213141516
  1. //
  2. // RACSubscriptionScheduler.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. // A private scheduler used only for subscriptions. See the private
  10. // +[RACScheduler subscriptionScheduler] method for more information.
  11. @interface RACSubscriptionScheduler : RACScheduler
  12. @end