EAEDiscoveredVenuePollingDelegate
Objective-C
@protocol EAEDiscoveredVenuePollingDelegate <NSObject>
/*!
Method which is invoked upon the successfull discovered venue poll
@param audioChannels The audio channels collection
@param extraChannels The featured content collection
*/
- (void) hasFinishedPollingAudioChannels:(NSArray *) audioChannels
isSHAAvailable: (BOOL) isSHAAvailable
featuredContent:(NSArray *) featuredContent
isHTTPSAvailable:(BOOL) isHTTPSAvailable
isProfileAvailable: (BOOL) isProfileAvailable;
/*!
Method which is invoked upon failing the channels poll
@param error The error which indicates why the poll failed
*/
- (void) hasFailedPolling: (BAWebServiceError *) error;
@end
Swift
protocol EAEDiscoveredVenuePollingDelegate : NSObjectProtocol
Undocumented
-
-hasFinishedPollingAudioChannels:
isSHAAvailable: featuredContent: isHTTPSAvailable: isProfileAvailable: Undocumented
Declaration
Objective-C
- (void)hasFinishedPollingAudioChannels:(NSArray *)audioChannels isSHAAvailable:(BOOL)isSHAAvailable featuredContent:(NSArray *)featuredContent isHTTPSAvailable:(BOOL)isHTTPSAvailable isProfileAvailable:(BOOL)isProfileAvailable;
Swift
func hasFinishedPollingAudioChannels(_ audioChannels: [Any]!, isSHAAvailable: Bool, featuredContent: [Any]!, isHTTPSAvailable: Bool, isProfileAvailable: Bool)
-
Undocumented
Declaration
Objective-C
- (void)hasFailedPolling:(BAWebServiceError *)error;
Swift
func hasFailedPolling(_ error: BAWebServiceError!)