AkaWebAccelerator
IntroductionAkaWebAccelerator Service encapsulates the Mobile Accelerator functionality provided by Voc SDK. Methods
debugSendAnalyticsDebug Only - send analytics to server now instead of waiting for regular cycle. - (void)debugSendAnalytics; logEvent:Creates a new record of an instantaneous event. Saves a string and time stamp to analytics. - (void)logEvent:(nonnull NSString *)eventName; ParametersprintCurrentCapabilitiesDebug Only - print current SDK capabilities to the developer console. - (void)printCurrentCapabilities; printManifestDebug Only - print manifest contents. - (void)printManifest; setDebugConsoleLog:Debug Only - Enable or disable the debug console. - (void)setDebugConsoleLog:(BOOL)bDebugConsole; ParametersstartEvent:Starts recording of a timed event for analytics. - (void)startEvent:(nonnull NSString *)eventName; ParametersDiscussionPair with -stopEvent: to record a string, start time, and end time. stopEvent:Stops recording of a timed event for analytics. - (void)stopEvent:(nonnull NSString *)eventName; ParametersDiscussionPair with -startEvent: to record a string, start time, and end time. subscribeSegments:Replace list of user segments. Content is refreshed immediately. - (void)subscribeSegments:(nonnull NSSet <NSString *> *)segments; ParametersDiscussionThis immediately syncs with the server to get a current list of content for the subscribed segments. Unsubscribed items are deleted and new items begin downloading. Pass the complete list of segments for this user with every update. For example, the user is in ["A","B"] and you want to add "C". Subscribe to ["A","B","C"]. Any segments not listed will be unjoined and their contents deleted. Contents contained in at least one subscribed segment is retained. |