RACSubscriptionScheduler.h 427 B

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