NSFileHandle+RACSupport.h 384 B

1234567891011121314151617181920
  1. //
  2. // NSFileHandle+RACSupport.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Josh Abernathy on 5/10/12.
  6. // Copyright (c) 2012 GitHub. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class RACSignal;
  10. @interface NSFileHandle (RACSupport)
  11. // Read any available data in the background and send it. Completes when data
  12. // length is <= 0.
  13. - (RACSignal *)rac_readInBackground;
  14. @end