EAEExxtractorConnection
Objective-C
@interface EAEExxtractorConnection : NSObject
@property (assign, nonatomic,readonly) NSInteger activeAudioChannelIndex;
@property (strong, nonatomic) NSString *baseURL;
@property (strong, nonatomic,readonly) EAEAudioChannel* activeAudioChannel;
@property (strong, nonatomic,readonly) NSArray* audioChannels;
@property (assign, nonatomic,readonly) BOOL isBusy;
@property (strong, nonatomic,readonly) NSArray* featuredContents;
@property (strong, nonatomic,readonly) EAEFeaturesHelper *featureVerifier;
@property (nonatomic) EAEExxtractorConnectionState state;
@property (strong, nonatomic) NSString *version;
@property (strong, nonatomic, readonly) NSString *partnerUniqueIdentifier;
@property (strong, nonatomic, readonly) NSString *exxtractorUniqueIdentifier;
@property (nonatomic) BOOL demoModeEnabled;
@property (nonatomic) BOOL isDemoInTransition;
@property (nonatomic) BOOL displayPrivateChannels;
@property (nonatomic) BOOL isProfilesAvailable;
@property (nonatomic) BOOL profileNeedsUpdate;
@property (nonatomic, strong) NSString *isAdminEnabled;
@property (strong, nonatomic) EAEProfileServer *activeServer;
@property (strong, nonatomic) EAEProfile *activeProfile;
@property (nonatomic) long *activeProfileVersion;
@property (strong, nonatomic) NSString *activeProfileLeid;
@property (strong, nonatomic) NSString *triggerIdFromLink;
@property (strong, nonatomic) NSArray *docsFromProfile;
@property (strong, nonatomic) NSArray *offersFromProfile;
@property (nonatomic, strong) NSString *tokenForAdmin;
@property (assign, nonatomic) BOOL isInternetReachable;
@property (strong, nonatomic) NSMutableDictionary *debugInfoSet;
@property (strong, nonatomic) NSMutableDictionary *connectedServers;
//multi language
@property (strong, nonatomic) NSString *languageSelected;
//beacons
@property (strong, nonatomic, readonly) NSString *triggerIdFromBeacon;
@property (assign, nonatomic) BOOL executedOnce; //for loading files in operator mode
//operator mode
@property (assign, nonatomic) BOOL isOperatorModeAvailable;
@property (nonatomic) BOOL isAutomated;
- (id) initWithMainStreamWebService:(EAEExxtractorWebService<EAEExxtractorStreamRequesting> *) mainStreamWebService
channelsPollingService:(id<EAEDiscoveredVenuePolling>) discoveredVenuePolling
discoveryService:(id<EAEDiscovering>) discoveryService
locationWebservice:(EAEExxtractorWebService<EAEExxtractorLocationRequesting>*)locationWebservice
documentWebservice:(EAEExxtractorWebService<EAEExxtractorDocumentRequesting>*)documentWebservice
contentWebservice:(EAEExxtractorWebService<EAEExxtractorContentRequesting>*)contentWebservice
statsWebservice:(EAEExxtractorWebService<EAEExxtractorStatsRequesting>*)statsWebservice
channelWebservice:(EAEExxtractorWebService<EAEExxtractorChannelRequesting>*)channelWebservice
authenticationWebservice:(EAEExxtractorWebService<EAEExxtractorAuthenticationRequesting>*)authenticationWebservice
profileWebservice:(EAEExxtractorWebService<EAEExxtractorProfileRequesting>*) profileWebservice
serverWebservice:(EAEExxtractorWebService<EAEExxtractorServerRequesting>*) serverWebservice
connectionRestAdapter:(BARestAdapter *) connectionRestAdapter;
+ (EAEExxtractorConnection *) exxtractorConnectionWithPartnerUniqueIdentifier:(NSString *)partnerUniqueIdentifier
loglevel: (EAEExxtractorConnectionLogLevel) logLevel;
+ (instancetype) sharedExxtractorConnection;
- (void) scanWithTimeout: (int) timeout
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) connectToVenueServer: (NSString *) targetVenueServer
withTimeout: (int) timeout
triggerIdFL: (NSString *) triggerIdFL
success:(EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) startChannelPlaybackWithChannel: (EAEAudioChannel *) channel
playStereoIfAvailable: (BOOL) playStereoIfAvailable
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) stopChannelPlaybackWithSuccess: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) validatePrivateChannelsAndSync: (NSError **) error;
- (void) validateProfilesAndSync: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) adminLogin: (NSString*) password
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) operatorLogin: (NSString*) password
username: (NSString*) username
success:(EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void)adminLogout:(NSString*) token
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) updateChannelsPrivacy: (NSArray*) channels
isPrivate: (BOOL) isPrivate
passphrase: (NSString*) passphrase
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) startSyncingChannelsWithExxtractor: (NSError **) error
isPrivateChannelsEnabled: (BOOL) isPrivateChannelsEnabled
isAdminEnabled: (NSString*) isAdminEnabled;
- (void) startSyncingProfileWithExxtractor: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
//get profiles menu
- (EAEProfileMenu*) getProfilesMenu: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (EAEProfile*) startSyncingProfilesAllExxtractors: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure
indexToInsert: (NSInteger) index;
- (void) getLocationWithSuccess: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) getDocumentsWithSuccess: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) getOffersWithSuccess: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
- (void) stopAndResetManager;
- (void) restartPlayback: (BOOL) playStereoIfAvailable;
- (void) dialogEnhacementShouldBeEnabled: (BOOL) enabled;
- (void) disconnectWithNotification: (NSString*) notificationName
demoMode:(BOOL) isDemoModeEnabled;
- (void) disconnect;
- (BOOL) isExxtractorConnected;
- (BOOL) isLoudSpeakerActive;
- (void) enableLoudSpeaker: (BOOL)enable;
- (NSArray *) getDocumentsFromDic:(NSMutableDictionary *) dictOfFiles;
- (void) setupLocationManager;
-(void) getServerGeneralInfo: (NSString *) baseUrlString
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
-(void) getServerUnitFile: (NSString *) baseUrlString
token: token
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
-(void) getServerVenueConfigFile: (NSString *) baseUrlString
token: (NSString *) token
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
-(EAEProfile*) getMobileAppProfile: (NSString *) baseUrlString
profileId: (NSString *) profileId
success: (EAEConnectionSuccessResponse) success
failure: (EAEConnectionFailureResponse) failure;
-(void) getAllFilesForOperatorMode;
- (void) updateCompleteUnitFile;
#pragma mark - Profile methods
- (void) getDocumentsFromProfile;
//Multi-language
- (NSArray*) audioLanguagesFromProfiles:(NSString*) defaultDeviceLang;
- (NSString*) getChannelIdFromTrigger: (NSString *) triggerId
curentProfile: (EAEProfile *) profile;
#pragma mark - Operator Mode methods
- (void) updateChannelsPrivacyOperatorMode: (NSArray*) channels
isPrivate: (BOOL) isPrivate
passphrase: (NSString*) passphrase;
#pragma mark - Connection history methods
- (void) saveConnection:(NSString *) serverConnection;
- (NSArray *) getConnections;
- (void) clearConnections;
@end
Swift
class EAEExxtractorConnection : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) NSInteger activeAudioChannelIndex
Swift
var activeAudioChannelIndex: Int { get }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSString *baseURL
Swift
var baseURL: String! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic, readonly) EAEAudioChannel* activeAudioChannel
Swift
var activeAudioChannel: EAEAudioChannel! { get }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic, readonly) NSArray* audioChannels
Swift
var audioChannels: [Any]! { get }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) BOOL isBusy
Swift
var isBusy: Bool { get }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic, readonly) NSArray* featuredContents
Swift
var featuredContents: [Any]! { get }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic, readonly) EAEFeaturesHelper *featureVerifier
Swift
var featureVerifier: EAEFeaturesHelper! { get }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) EAEExxtractorConnectionState state
Swift
var state: EAEExxtractorConnectionState { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSString *version
Swift
var version: String! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic, readonly) NSString *partnerUniqueIdentifier
Swift
var partnerUniqueIdentifier: String! { get }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic, readonly) NSString *exxtractorUniqueIdentifier
Swift
var exxtractorUniqueIdentifier: String! { get }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL demoModeEnabled
Swift
var demoModeEnabled: Bool { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL isDemoInTransition
Swift
var isDemoInTransition: Bool { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL displayPrivateChannels
Swift
var displayPrivateChannels: Bool { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL isProfilesAvailable
Swift
var isProfilesAvailable: Bool { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL profileNeedsUpdate
Swift
var profileNeedsUpdate: Bool { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong) NSString *isAdminEnabled
Swift
var isAdminEnabled: String! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) EAEProfileServer *activeServer
Swift
var activeServer: EAEProfileServer! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) EAEProfile *activeProfile
Swift
var activeProfile: EAEProfile! { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) long *activeProfileVersion
Swift
var activeProfileVersion: UnsafeMutablePointer<Int>! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSString *activeProfileLeid
Swift
var activeProfileLeid: String! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSString *triggerIdFromLink
Swift
var triggerIdFromLink: String! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSArray *docsFromProfile
Swift
var docsFromProfile: [Any]! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSArray *offersFromProfile
Swift
var offersFromProfile: [Any]! { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong) NSString *tokenForAdmin
Swift
var tokenForAdmin: String! { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL isInternetReachable
Swift
var isInternetReachable: Bool { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSMutableDictionary *debugInfoSet
Swift
var debugInfoSet: NSMutableDictionary! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSMutableDictionary *connectedServers
Swift
var connectedServers: NSMutableDictionary! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic) NSString *languageSelected
Swift
var languageSelected: String! { get set }
-
Undocumented
Declaration
Objective-C
@property (strong, nonatomic, readonly) NSString *triggerIdFromBeacon
Swift
var triggerIdFromBeacon: String! { get }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL executedOnce
Swift
var executedOnce: Bool { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL isOperatorModeAvailable
Swift
var isOperatorModeAvailable: Bool { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL isAutomated
Swift
var isAutomated: Bool { get set }
-
-initWithMainStreamWebService:
channelsPollingService: discoveryService: locationWebservice: documentWebservice: contentWebservice: statsWebservice: channelWebservice: authenticationWebservice: profileWebservice: serverWebservice: connectionRestAdapter: Undocumented
Declaration
Objective-C
- (id) initWithMainStreamWebService:(EAEExxtractorWebService<EAEExxtractorStreamRequesting> *) mainStreamWebService channelsPollingService:(id<EAEDiscoveredVenuePolling>) discoveredVenuePolling discoveryService:(id<EAEDiscovering>) discoveryService locationWebservice:(EAEExxtractorWebService<EAEExxtractorLocationRequesting>*)locationWebservice documentWebservice:(EAEExxtractorWebService<EAEExxtractorDocumentRequesting>*)documentWebservice contentWebservice:(EAEExxtractorWebService<EAEExxtractorContentRequesting>*)contentWebservice statsWebservice:(EAEExxtractorWebService<EAEExxtractorStatsRequesting>*)statsWebservice channelWebservice:(EAEExxtractorWebService<EAEExxtractorChannelRequesting>*)channelWebservice authenticationWebservice:(EAEExxtractorWebService<EAEExxtractorAuthenticationRequesting>*)authenticationWebservice profileWebservice:(EAEExxtractorWebService<EAEExxtractorProfileRequesting>*) profileWebservice serverWebservice:(EAEExxtractorWebService<EAEExxtractorServerRequesting>*) serverWebservice connectionRestAdapter:(BARestAdapter *) connectionRestAdapter;
Swift
init!(mainStreamWebService: (any EAEExxtractorWebService & EAEExxtractorStreamRequesting)!, channelsPollingService discoveredVenuePolling: (any EAEDiscoveredVenuePolling)!, discoveryService: (any EAEDiscovering)!, locationWebservice: (any EAEExxtractorWebService & EAEExxtractorLocationRequesting)!, documentWebservice: (any EAEExxtractorWebService & EAEExxtractorDocumentRequesting)!, contentWebservice: (any EAEExxtractorWebService & EAEExxtractorContentRequesting)!, statsWebservice: (any EAEExxtractorWebService & EAEExxtractorStatsRequesting)!, channelWebservice: (any EAEExxtractorWebService & EAEExxtractorChannelRequesting)!, authenticationWebservice: (any EAEExxtractorWebService & EAEExxtractorAuthenticationRequesting)!, profileWebservice: (any EAEExxtractorWebService & EAEExxtractorProfileRequesting)!, serverWebservice: (any EAEExxtractorWebService & EAEExxtractorServerRequesting)!, connectionRestAdapter: BARestAdapter!)
-
Undocumented
Declaration
Objective-C
+ (EAEExxtractorConnection *) exxtractorConnectionWithPartnerUniqueIdentifier:(NSString *)partnerUniqueIdentifier loglevel: (EAEExxtractorConnectionLogLevel) logLevel;
Swift
/*not inherited*/ init!(partnerUniqueIdentifier: String!, loglevel logLevel: EAEExxtractorConnectionLogLevel)
-
Undocumented
Declaration
Objective-C
+ (instancetype) sharedExxtractorConnection;
Swift
class func shared() -> Self!
-
Undocumented
Declaration
Objective-C
- (void) scanWithTimeout: (int) timeout success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func scan(withTimeout timeout: Int32, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) connectToVenueServer: (NSString *) targetVenueServer withTimeout: (int) timeout triggerIdFL: (NSString *) triggerIdFL success:(EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func connect(toVenueServer targetVenueServer: String!, withTimeout timeout: Int32, triggerIdFL: String!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) startChannelPlaybackWithChannel: (EAEAudioChannel *) channel playStereoIfAvailable: (BOOL) playStereoIfAvailable success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func startChannelPlayback(with channel: EAEAudioChannel!, playStereoIfAvailable: Bool, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) stopChannelPlaybackWithSuccess: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func stopChannelPlayback(success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) validatePrivateChannelsAndSync: (NSError **) error;
Swift
func validatePrivateChannelsAndSync(_ error: NSErrorPointer)
-
Undocumented
Declaration
Objective-C
- (void) validateProfilesAndSync: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func validateProfilesAndSync(_ success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) adminLogin: (NSString*) password success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func adminLogin(_ password: String!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) operatorLogin: (NSString*) password username: (NSString*) username success:(EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func operatorLogin(_ password: String!, username: String!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void)adminLogout:(NSString*) token success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func adminLogout(_ token: String!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) updateChannelsPrivacy: (NSArray*) channels isPrivate: (BOOL) isPrivate passphrase: (NSString*) passphrase success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func updateChannelsPrivacy(_ channels: [Any]!, isPrivate: Bool, passphrase: String!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) startSyncingChannelsWithExxtractor: (NSError **) error isPrivateChannelsEnabled: (BOOL) isPrivateChannelsEnabled isAdminEnabled: (NSString*) isAdminEnabled;
Swift
func startSyncingChannels(withExxtractor error: NSErrorPointer, isPrivateChannelsEnabled: Bool, isAdminEnabled: String!)
-
Undocumented
Declaration
Objective-C
- (void) startSyncingProfileWithExxtractor: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func startSyncingProfile(exxtractor success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (EAEProfileMenu*) getProfilesMenu: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func getProfilesMenu(_ success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!) -> EAEProfileMenu!
-
Undocumented
Declaration
Objective-C
- (EAEProfile*) startSyncingProfilesAllExxtractors: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure indexToInsert: (NSInteger) index;
Swift
func startSyncingProfilesAllExxtractors(_ success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!, indexToInsert index: Int) -> EAEProfile!
-
Undocumented
Declaration
Objective-C
- (void) getLocationWithSuccess: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func getLocationWithSuccess(_ success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) getDocumentsWithSuccess: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func getDocumentsWithSuccess(_ success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) getOffersWithSuccess: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func getOffersWithSuccess(_ success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
- (void) stopAndResetManager;
Swift
func stopAndResetManager()
-
Undocumented
Declaration
Objective-C
- (void) restartPlayback: (BOOL) playStereoIfAvailable;
Swift
func restartPlayback(_ playStereoIfAvailable: Bool)
-
Undocumented
Declaration
Objective-C
- (void) dialogEnhacementShouldBeEnabled: (BOOL) enabled;
Swift
func dialogEnhacementShouldBeEnabled(_ enabled: Bool)
-
Undocumented
Declaration
Objective-C
- (void) disconnectWithNotification: (NSString*) notificationName demoMode:(BOOL) isDemoModeEnabled;
Swift
func disconnect(withNotification notificationName: String!, demoMode isDemoModeEnabled: Bool)
-
Undocumented
Declaration
Objective-C
- (void) disconnect;
Swift
func disconnect()
-
Undocumented
Declaration
Objective-C
- (BOOL) isExxtractorConnected;
Swift
func isExxtractorConnected() -> Bool
-
Undocumented
Declaration
Objective-C
- (BOOL) isLoudSpeakerActive;
Swift
func isLoudSpeakerActive() -> Bool
-
Undocumented
Declaration
Objective-C
- (void) enableLoudSpeaker: (BOOL)enable;
Swift
func enableLoudSpeaker(_ enable: Bool)
-
Undocumented
Declaration
Objective-C
- (NSArray *) getDocumentsFromDic:(NSMutableDictionary *) dictOfFiles;
Swift
func getDocumentsFromDic(_ dictOfFiles: NSMutableDictionary!) -> [Any]!
-
Undocumented
Declaration
Objective-C
- (void) setupLocationManager;
Swift
func setupLocationManager()
-
Undocumented
Declaration
Objective-C
-(void) getServerGeneralInfo: (NSString *) baseUrlString success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func getServerGeneralInfo(_ baseUrlString: String!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
-(void) getServerUnitFile: (NSString *) baseUrlString token: token success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func getServerUnitFile(_ baseUrlString: String!, token: Any!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
-(void) getServerVenueConfigFile: (NSString *) baseUrlString token: (NSString *) token success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func getServerVenueConfigFile(_ baseUrlString: String!, token: String!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!)
-
Undocumented
Declaration
Objective-C
-(EAEProfile*) getMobileAppProfile: (NSString *) baseUrlString profileId: (NSString *) profileId success: (EAEConnectionSuccessResponse) success failure: (EAEConnectionFailureResponse) failure;
Swift
func getMobileAppProfile(_ baseUrlString: String!, profileId: String!, success: EAEConnectionSuccessResponse!, failure: EAEConnectionFailureResponse!) -> EAEProfile!
-
Undocumented
Declaration
Objective-C
-(void) getAllFilesForOperatorMode;
Swift
func getAllFilesForOperatorMode()
-
Undocumented
Declaration
Objective-C
- (void) updateCompleteUnitFile;
Swift
func updateCompleteUnitFile()
-
Undocumented
Declaration
Objective-C
- (void) getDocumentsFromProfile;
Swift
func getDocumentsFromProfile()
-
Undocumented
Declaration
Objective-C
- (NSArray*) audioLanguagesFromProfiles:(NSString*) defaultDeviceLang;
Swift
func audioLanguages(fromProfiles defaultDeviceLang: String!) -> [Any]!
-
Undocumented
Declaration
Objective-C
- (NSString*) getChannelIdFromTrigger: (NSString *) triggerId curentProfile: (EAEProfile *) profile;
Swift
func getChannelId(fromTrigger triggerId: String!, curentProfile profile: EAEProfile!) -> String!
-
Undocumented
Declaration
Objective-C
- (void) updateChannelsPrivacyOperatorMode: (NSArray*) channels isPrivate: (BOOL) isPrivate passphrase: (NSString*) passphrase;
Swift
func updateChannelsPrivacyOperatorMode(_ channels: [Any]!, isPrivate: Bool, passphrase: String!)
-
Undocumented
Declaration
Objective-C
- (void) saveConnection:(NSString *) serverConnection;
Swift
func save(_ serverConnection: String!)
-
Undocumented
Declaration
Objective-C
- (NSArray *) getConnections;
Swift
func getConnections() -> [Any]!
-
Undocumented
Declaration
Objective-C
- (void) clearConnections;
Swift
func clearConnections()