EAEExxtractorContentRequesting

Objective-C

@protocol EAEExxtractorContentRequesting

/*!
 Method that performs the request which retrieves the extra channels
 
 @param success The block which will be executed upon a successful request
 @param failure The block which will be executed upon a failed request
 */

- (void)requestFeaturedContentWithSuccess:(BAWebServiceSuccessResponse)success
                                  failure:(BAWebServiceFailureResponse)failure
                         isHTTPSAvailable:(BOOL) isHTTPSAvailable;

/*!
 Method that performs the request which retrieves the offers
 
 @param success The block which will be executed upon a successful request
 @param failure The block which will be executed upon a failed request
 */

- (void)requestOffersWithSuccess:(BAWebServiceSuccessResponse)success
                         failure:(BAWebServiceFailureResponse)failure
                isHTTPSAvailable:(BOOL) isHTTPSAvailable;
@end

Swift

protocol EAEExxtractorContentRequesting

Undocumented