RACSignal+RQHTTPServiceAdditions.h 432 B

123456789101112131415161718
  1. //
  2. // RACSignal+RQHTTPServiceAdditions.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/16.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "RACSignal.h"
  9. @interface RACSignal (RQHTTPServiceAdditions)
  10. // This method assumes that the receiver is a signal of RQHTTPResponses.
  11. //
  12. // Returns a signal that maps the receiver to become a signal of
  13. // RQHTTPResponses.parsedResult.
  14. - (RACSignal *)rq_parsedResults;
  15. @end