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