123456789101112131415161718192021222324252627282930 |
- //
- // NSURLConnection+RACSupport.h
- // ReactiveObjC
- //
- // Created by Justin Spahr-Summers on 2013-10-01.
- // Copyright (c) 2013 GitHub, Inc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class RACTwoTuple<__covariant First, __covariant Second>;
- @class RACSignal<__covariant ValueType>;
- NS_ASSUME_NONNULL_BEGIN
- @interface NSURLConnection (RACSupport)
- /// Lazily loads data for the given request in the background.
- ///
- /// request - The URL request to load. This must not be nil.
- ///
- /// Returns a signal which will begin loading the request upon each subscription,
- /// then send a tuple of the received response and downloaded data, and complete
- /// on a background thread. If any errors occur, the returned signal will error
- /// out.
- + (RACSignal<RACTwoTuple<NSURLResponse *, NSData *> *> *)rac_sendAsynchronousRequest:(NSURLRequest *)request;
- @end
- NS_ASSUME_NONNULL_END
|