1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- //
- // YTKChainRequest.h
- //
- // Copyright (c) 2012-2016 YTKNetwork https://github.com/yuantiku
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @class YTKChainRequest;
- @class YTKBaseRequest;
- @protocol YTKRequestAccessory;
- /// The YTKChainRequestDelegate protocol defines several optional methods you can use
- /// to receive network-related messages. All the delegate methods will be called
- /// on the main queue. Note the delegate methods will be called when all the requests
- /// of chain request finishes.
- @protocol YTKChainRequestDelegate <NSObject>
- @optional
- /// Tell the delegate that the chain request has finished successfully.
- ///
- /// @param chainRequest The corresponding chain request.
- - (void)chainRequestFinished:(YTKChainRequest *)chainRequest;
- /// Tell the delegate that the chain request has failed.
- ///
- /// @param chainRequest The corresponding chain request.
- /// @param request First failed request that causes the whole request to fail.
- - (void)chainRequestFailed:(YTKChainRequest *)chainRequest failedBaseRequest:(YTKBaseRequest*)request;
- @end
- typedef void (^YTKChainCallback)(YTKChainRequest *chainRequest, YTKBaseRequest *baseRequest);
- /// YTKBatchRequest can be used to chain several YTKRequest so that one will only starts after another finishes.
- /// Note that when used inside YTKChainRequest, a single YTKRequest will have its own callback and delegate
- /// cleared, in favor of the batch request callback.
- @interface YTKChainRequest : NSObject
- /// All the requests are stored in this array.
- - (NSArray<YTKBaseRequest *> *)requestArray;
- /// The delegate object of the chain request. Default is nil.
- @property (nonatomic, weak, nullable) id<YTKChainRequestDelegate> delegate;
- /// This can be used to add several accessories object. Note if you use `addAccessory` to add acceesory
- /// this array will be automatically created. Default is nil.
- @property (nonatomic, strong, nullable) NSMutableArray<id<YTKRequestAccessory>> *requestAccessories;
- /// Convenience method to add request accessory. See also `requestAccessories`.
- - (void)addAccessory:(id<YTKRequestAccessory>)accessory;
- /// Start the chain request, adding first request in the chain to request queue.
- - (void)start;
- /// Stop the chain request. Remaining request in chain will be cancelled.
- - (void)stop;
- /// Add request to request chain.
- ///
- /// @param request The request to be chained.
- /// @param callback The finish callback
- - (void)addRequest:(YTKBaseRequest *)request callback:(nullable YTKChainCallback)callback;
- @end
- NS_ASSUME_NONNULL_END
|