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
-
Undocumented
Declaration
Objective-C
- (void) requestStartChannelStreamWithChannel:(EAEAudioChannel *)channel isSHA2Available:(BOOL)isSHA2Available isHTTPSAvailable:(BOOL)isHTTPSAvailable success:(BAWebServiceSuccessResponse)success failure:(BAWebServiceFailureResponse)failure;
Swift
func requestStartChannelStream(with channel: EAEAudioChannel!, isSHA2Available: Bool, isHTTPSAvailable: Bool, success: BAWebServiceSuccessResponse!, failure: BAWebServiceFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void)requestStopChannelStreamWithSuccess:(BAWebServiceSuccessResponse)success failure:(BAWebServiceFailureResponse)failure isHTTPSAvailable:(BOOL)isHTTPSAvailable;
Swift
func requestStopChannelStream(success: BAWebServiceSuccessResponse!, failure: BAWebServiceFailureResponse!, isHTTPSAvailable: Bool)
-
Undocumented
Declaration
Objective-C
- (void)requestStopChannelStreamWithSuccessV2:(BAWebServiceSuccessResponse)success failure:(BAWebServiceFailureResponse)failure isHTTPSAvailable:(BOOL) isHTTPSAvailable;
Swift
func requestStopChannelStream(successV2 success: BAWebServiceSuccessResponse!, failure: BAWebServiceFailureResponse!, isHTTPSAvailable: Bool)