EAEExxtractorStreamRequesting

Objective-C

@protocol EAEExxtractorStreamRequesting

/*!
   Method which performs the request that stops the stream of a given session
 
   @param channel The channel whose stream should be stopped
   @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)requestStartChannelStreamWithChannel:(EAEAudioChannel *) channel
                            isSHA2Available: (BOOL) isSHA2Available
                            isHTTPSAvailable:(BOOL) isHTTPSAvailable
                                      success:(BAWebServiceSuccessResponse)success
                                      failure:(BAWebServiceFailureResponse)failure;

/*!
   Method which performs the request that starts the stream of a given session
 
   @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)requestStopChannelStreamWithSuccess:(BAWebServiceSuccessResponse)success
                                      failure:(BAWebServiceFailureResponse)failure
                           isHTTPSAvailable: (BOOL)isHTTPSAvailable;

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

@end

Swift

protocol EAEExxtractorStreamRequesting

Undocumented