forked from Countly/countly-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Countly.h
executable file
·623 lines (521 loc) · 31.1 KB
/
Countly.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
// Countly.h
//
// This code is provided under the MIT License.
//
// Please visit www.count.ly for more information.
#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
#import "CountlyUserDetails.h"
#import "CountlyConfig.h"
#if (TARGET_OS_IOS || TARGET_OS_OSX)
#import <UserNotifications/UserNotifications.h>
#endif
NS_ASSUME_NONNULL_BEGIN
@interface Countly : NSObject
#pragma mark - Core
/**
* Returns @c Countly singleton to be used throughout the app.
* @return The shared @c Countly object
*/
+ (instancetype)sharedInstance;
/**
* Starts Countly with given configuration and begins session.
* @param config @c CountlyConfig object that defines host, app key, optional features and other settings
*/
- (void)startWithConfig:(CountlyConfig *)config;
/**
* Sets new device ID to be persistently stored and used in following requests.
* @discussion Value passed for @c deviceID parameter has to be a non-zero length valid string, otherwise default device ID will be used instead.
* @discussion If value passed for @c deviceID parameter is exactly same to the current device ID, method call is ignored.
* @discussion When passing @c CLYTemporaryDeviceID for @c deviceID parameter, argument for @c onServer parameter does not matter.
* @discussion When setting a new device ID while the current device ID is @c CLYTemporaryDeviceID, argument for @c onServer parameter does not matter.
* @param deviceID New device ID
* @param onServer If set, data on Countly Server will be merged automatically, otherwise device will be counted as a new device
*/
- (void)setNewDeviceID:(NSString * _Nullable)deviceID onServer:(BOOL)onServer;
/**
* Sets new app key to be used in following requests.
* @discussion Before switching to new app key, this method suspends Countly and resumes immediately after.
* @discussion Requests already queued previously will keep using the old app key.
* @discussion New app key needs to be a non-zero length string, otherwise it is ignored.
* @param newAppKey New app key
*/
- (void)setNewAppKey:(NSString *)newAppKey;
/**
* Sets the value of the custom HTTP header field to be sent with every request if @c customHeaderFieldName is set on initial configuration.
* @discussion If @c customHeaderFieldValue on initial configuration can not be set on app launch, this method can be used to do so later.
* @discussion Requests not started due to missing @c customHeaderFieldValue since app launch will start hereafter.
* @param customHeaderFieldValue Custom header field value
*/
- (void)setCustomHeaderFieldValue:(NSString *)customHeaderFieldValue;
/**
* Flushes request and event queues.
* @discussion Flushes persistently stored request queue and events recorded but not converted to a request so far.
* @discussion Started timed events will not be affected.
*/
- (void)flushQueues;
/**
* Starts session and sends @c begin_session request with default metrics for manual session handling.
* @discussion This method needs to be called for starting a session only if @c manualSessionHandling flag is set on initial configuration.
* @discussion Otherwise; sessions will be handled automatically by default, and calling this method will have no effect.
*/
- (void)beginSession;
/**
* Updates session and sends unsent session duration for manual session handling.
* @discussion This method needs to be called for updating a session only if @c manualSessionHandling flag is set on initial configuration.
* @discussion Otherwise; sessions will be handled automatically by default, and calling this method will have no effect.
*/
- (void)updateSession;
/**
* Ends session and sends @c end_session request for manual session handling.
* @discussion This method needs to be called for ending a session only if @c manualSessionHandling flag is set on initial configuration.
* @discussion Otherwise; sessions will be handled automatically by default, and calling this method will have no effect.
*/
- (void)endSession;
#if (TARGET_OS_WATCH)
/**
* Suspends Countly, adds recorded events to request queue and ends current session.
* @discussion This method needs to be called manually only on @c watchOS, on other platforms it will be called automatically.
*/
- (void)suspend;
/**
* Resumes Countly, begins a new session after the app comes to foreground.
* @discussion This method needs to be called manually only on @c watchOS, on other platforms it will be called automatically.
*/
- (void)resume;
#endif
#pragma mark - Consents
/**
* Grants consent to given feature and starts it.
* @discussion If @c requiresConsent flag is set on initial configuration, each feature waits and ignores manual calls until explicit consent is given.
* @discussion After giving consent to a feature, it is started and kept active henceforth.
* @discussion If consent to the feature is already given before, calling this method will have no effect.
* @discussion If @c requiresConsent flag is not set on initial configuration, calling this method will have no effect.
* @param featureName Feature name to give consent to
*/
- (void)giveConsentForFeature:(CLYConsent)featureName;
/**
* Grants consent to given features and starts them.
* @discussion This is a convenience method for grating consent for multiple features at once.
* @discussion Inner workings of @c giveConsentForFeature: method applies for this method as well.
* @param features Array of feature names to give consent to
*/
- (void)giveConsentForFeatures:(NSArray<CLYConsent> *)features;
/**
* Grants consent to all features and starts them.
* @discussion This is a convenience method for grating consent for all features at once.
* @discussion Inner workings of @c giveConsentForFeature: method applies for this method as well.
*/
- (void)giveConsentForAllFeatures;
/**
* Cancels consent to given feature and stops it.
* @discussion After cancelling consent to a feature, it is stopped and kept inactive henceforth.
* @discussion If consent to the feature is already cancelled before, calling this method will have no effect.
* @discussion If @c requiresConsent flag is not set on initial configuration, calling this method will have no effect.
* @param featureName Feature name to cancel consent to
*/
- (void)cancelConsentForFeature:(CLYConsent)featureName;
/**
* Cancels consent to given features and stops them.
* @discussion This is a convenience method for cancelling consent for multiple features at once.
* @discussion Inner workings of @c cancelConsentForFeature: method applies for this method as well.
* @param features Array of feature names to cancel consent to
*/
- (void)cancelConsentForFeatures:(NSArray<CLYConsent> *)features;
/**
* Cancels consent to all features and stops them.
* @discussion This is a convenience method for cancelling consent for all features at once.
* @discussion Inner workings of @c cancelConsentForFeature: method applies for this method as well.
*/
- (void)cancelConsentForAllFeatures;
/**
* Returns current device ID being used for tracking.
* @discussion Device ID can be used for handling data export and/or removal requests as part of data privacy compliance.
*/
- (NSString *)deviceID;
#pragma mark - Events
/**
* Records event with given key.
* @param key Event key, a non-zero length valid string
*/
- (void)recordEvent:(NSString *)key;
/**
* Records event with given key and count.
* @param key Event key, a non-zero length valid string
* @param count Count of event occurrences
*/
- (void)recordEvent:(NSString *)key count:(NSUInteger)count;
/**
* Records event with given key and sum.
* @param key Event key, a non-zero length valid string
* @param sum Sum of any specific value for event
*/
- (void)recordEvent:(NSString *)key sum:(double)sum;
/**
* Records event with given key and duration.
* @param key Event key, a non-zero length valid string
* @param duration Duration of event in seconds
*/
- (void)recordEvent:(NSString *)key duration:(NSTimeInterval)duration;
/**
* Records event with given key, count and sum.
* @param key Event key, a non-zero length valid string
* @param count Count of event occurrences
* @param sum Sum of any specific value for event
*/
- (void)recordEvent:(NSString *)key count:(NSUInteger)count sum:(double)sum;
/**
* Records event with given key and segmentation.
* @discussion Segmentation should be an @c NSDictionary, with keys and values are both @c NSString's only.
* @discussion Custom objects in segmentation will cause events not to be sent to Countly Server.
* @discussion Nested values in segmentation will be ignored by Countly Server event segmentation section.
* @param key Event key, a non-zero length valid string
* @param segmentation Segmentation key-value pairs of event
*/
- (void)recordEvent:(NSString *)key segmentation:(NSDictionary<NSString *, NSString *> * _Nullable)segmentation;
/**
* Records event with given key, segmentation and count.
* @discussion Segmentation should be an @c NSDictionary, with keys and values are both @c NSString's only.
* @discussion Custom objects in segmentation will cause events not to be sent to Countly Server.
* @discussion Nested values in segmentation will be ignored by Countly Server event segmentation section.
* @param key Event key, a non-zero length valid string
* @param segmentation Segmentation key-value pairs of event
* @param count Count of event occurrences
*/
- (void)recordEvent:(NSString *)key segmentation:(NSDictionary<NSString *, NSString *> * _Nullable)segmentation count:(NSUInteger)count;
/**
* Records event with given key, segmentation, count and sum.
* @discussion Segmentation should be an @c NSDictionary, with keys and values are both @c NSString's only.
* @discussion Custom objects in segmentation will cause events not to be sent to Countly Server.
* @discussion Nested values in segmentation will be ignored by Countly Server event segmentation section.
* @param key Event key, a non-zero length valid string
* @param segmentation Segmentation key-value pairs of event
* @param count Count of event occurrences
* @param sum Sum of any specific value for event
*/
- (void)recordEvent:(NSString *)key segmentation:(NSDictionary<NSString *, NSString *> * _Nullable)segmentation count:(NSUInteger)count sum:(double)sum;
/**
* Records event with given key, segmentation, count, sum and duration.
* @discussion Segmentation should be an @c NSDictionary, with keys and values are both @c NSString's only.
* @discussion Custom objects in segmentation will cause events not to be sent to Countly Server.
* @discussion Nested values in segmentation will be ignored by Countly Server event segmentation section.
* @param key Event key, a non-zero length valid string
* @param segmentation Segmentation key-value pairs of event
* @param count Count of event occurrences
* @param sum Sum of any specific value for event
* @param duration Duration of event in seconds
*/
- (void)recordEvent:(NSString *)key segmentation:(NSDictionary<NSString *, NSString *> * _Nullable)segmentation count:(NSUInteger)count sum:(double)sum duration:(NSTimeInterval)duration;
/**
* Starts a timed event with given key to be ended later. Duration of timed event will be calculated on ending.
* @discussion Trying to start an event with already started key will have no effect.
* @param key Event key, a non-zero length valid string
*/
- (void)startEvent:(NSString *)key;
/**
* Ends a previously started timed event with given key.
* @discussion Trying to end an event with already ended (or not yet started) key will have no effect.
* @param key Event key, a non-zero length valid string
*/
- (void)endEvent:(NSString *)key;
/**
* Ends a previously started timed event with given key, segmentation, count and sum.
* @discussion Trying to end an event with already ended (or not yet started) key will have no effect.
* @discussion Segmentation should be an @c NSDictionary, with keys and values are both @c NSString's only.
* @discussion Custom objects in segmentation will cause events not to be sent to Countly Server.
* @discussion Nested values in segmentation will be ignored by Countly Server event segmentation section.
* @param key Event key, a non-zero length valid string
* @param segmentation Segmentation key-value pairs of event
* @param count Count of event occurrences
* @param sum Sum of any specific value for event
*/
- (void)endEvent:(NSString *)key segmentation:(NSDictionary<NSString *, NSString *> * _Nullable)segmentation count:(NSUInteger)count sum:(double)sum;
/**
* Cancels a previously started timed event with given key.
* @discussion Trying to cancel an event with already cancelled (or ended or not yet started) key will have no effect.
* @param key Event key, a non-zero length valid string
*/
- (void)cancelEvent:(NSString *)key;
#pragma mark - Push Notification
#if (TARGET_OS_IOS || TARGET_OS_OSX)
#ifndef COUNTLY_EXCLUDE_PUSHNOTIFICATIONS
/**
* Shows default system dialog that asks for user's permission to display notifications.
* @discussion A unified convenience method that handles asking for notification permission on both iOS10 and older iOS versions with badge, sound and alert notification types.
*/
- (void)askForNotificationPermission;
/**
* Shows default system dialog that asks for user's permission to display notifications with given options and completion handler.
* @discussion A more customizable version of unified convenience method that handles asking for notification permission on both iOS10 and older iOS versions.
* @discussion Notification types the app wants to display can be specified using @c options parameter.
* @discussion Completion block has @c granted (@c BOOL) parameter which is @c YES if user granted permission, and @c error (@c NSError) parameter which is non-nil if there is an error.
* @param options Bitwise combination of notification types (badge, sound or alert) the app wants to display
* @param completionHandler A completion handler block to be executed when user answers notification permission dialog
*/
- (void)askForNotificationPermissionWithOptions:(UNAuthorizationOptions)options completionHandler:(void (^)(BOOL granted, NSError * error))completionHandler API_AVAILABLE(ios(10.0), macos(10.14));
/**
* Records action event for a manually presented push notification with custom action buttons.
* @discussion If a push notification with custom action buttons is handled and presented manually using custom UI, user's action needs to be recorded manually.
* @discussion With this convenience method user's action can be recorded passing push notification dictionary and clicked button index.
* @discussion Button index should be @c 0 for default action, @c 1 for the first action button and @c 2 for the second action button.
* @param userInfo Manually presented push notification dictionary
* @param buttonIndex Index of custom action button user clicked
*/
- (void)recordActionForNotification:(NSDictionary *)userInfo clickedButtonIndex:(NSInteger)buttonIndex;
/**
* Records push notification token to Countly Server for current device ID.
* @discussion Can be used to re-send push notification token for current device ID, after a new user logs in and device ID changes, without waiting for the app to be restarted.
* @discussion In general, push notification token is handled automatically and this method does not need to be called manually.
*/
- (void)recordPushNotificationToken;
/**
* Clears push notification token on Countly Server for current device ID.
* @discussion Can be used to clear push notification token for current device ID, before the current user logs out and device ID changes, without waiting for the app to be restarted.
*/
- (void)clearPushNotificationToken;
#endif
#endif
#pragma mark - Location
/**
* Records user's location info to be used for geo-location based push notifications and advanced user segmentation.
* @discussion By default, Countly Server uses a geo-ip database for acquiring user's location.
* @discussion If the app uses Core Location services and granted permission, a location with better accuracy can be provided using this method.
* @discussion This method overrides @c location property specified on initial configuration, and sends an immediate request.
* @param location User's location with latitude and longitude
*/
- (void)recordLocation:(CLLocationCoordinate2D)location;
/**
* Records user's city and country info to be used for geo-location based push notifications and advanced user segmentation.
* @discussion By default, Countly Server uses a geo-ip database for acquiring user's location.
* @discussion If the app has information about user's city and/or country, these information can be provided using this method.
* @discussion This method overrides @c city and @c ISOCountryCode properties specified on initial configuration, and sends an immediate request.
* @param city User's city
* @param ISOCountryCode User's ISO country code in ISO 3166-1 alpha-2 format
*/
- (void)recordCity:(NSString *)city andISOCountryCode:(NSString *)ISOCountryCode;
/**
* Records user's IP address to be used for geo-location based push notifications and advanced user segmentation.
* @discussion By default, Countly Server uses a geo-ip database for acquiring user's location.
* @discussion If the app needs to explicitly specify the IP address due to network requirements, it can be provided using this method.
* @discussion This method overrides @c IP property specified on initial configuration, and sends an immediate request.
* @param IP User's explicit IP address
*/
- (void)recordIP:(NSString *)IP;
/**
* Disables geo-location based push notifications by clearing all existing location info.
* @discussion Once disabled, geo-location based push notifications can be enabled again by calling @c recordLocation: or @c recordCity:andISOCountryCode: or @c recordIP: method.
*/
- (void)disableLocationInfo;
/**
* @c isGeoLocationEnabled property is deprecated. Please use @c disableLocationInfo method instead.
* @discussion Using this property will have no effect.
*/
@property (nonatomic) BOOL isGeoLocationEnabled DEPRECATED_MSG_ATTRIBUTE("Use 'disableLocationInfo' method instead!");
#pragma mark - Crash Reporting
/**
* Records a handled exception manually.
* @param exception Exception to be recorded
*/
- (void)recordHandledException:(NSException *)exception;
/**
* Records a handled exception and given stack trace manually.
* @param exception Exception to be recorded
* @param stackTrace Stack trace to be recorded
*/
- (void)recordHandledException:(NSException *)exception withStackTrace:(NSArray * _Nullable)stackTrace;
/**
* Records an unhandled exception and given stack trace manually.
* @discussion For recording non-native level fatal exceptions, where the app keeps running at native level and can recover.
* @param exception Exception to be recorded
* @param stackTrace Stack trace to be recorded
*/
- (void)recordUnhandledException:(NSException *)exception withStackTrace:(NSArray * _Nullable)stackTrace;
/**
* Records custom logs to be delivered with crash report.
* @discussion Logs recorded by this method are stored in a non-persistent structure, and delivered to Countly Server only in case of a crash.
* @param log Custom log string to be recorded
*/
- (void)recordCrashLog:(NSString *)log;
/**
* @c crashLog: method is deprecated. Please use @c recordCrashLog: method instead.
* @discussion Be advised, parameter type changed to plain @c NSString from string format, for better Swift compatibility.
* @discussion Calling this method will have no effect.
*/
- (void)crashLog:(NSString *)format, ... NS_FORMAT_FUNCTION(1,2) DEPRECATED_MSG_ATTRIBUTE("Use 'recordCrashLog:' method instead!");
#pragma mark - View Tracking
/**
* Records a visited view with given name.
* @discussion Total duration of the view will be calculated on next @c recordView: call.
* @discussion If AutoViewTracking feature is enabled on initial configuration, this method does not need to be called manually.
* @param viewName Name of the view visited, a non-zero length valid string
*/
- (void)recordView:(NSString *)viewName;
/**
* Records a visited view with given name and custom segmentation.
* @discussion This is an extended version of @c recordView: method.
* @discussion If segmentation has any of Countly reserved keys, they will be ignored:
* @discussion @c name, @c segment, @c visit, @c start, @c bounce, @c exit, @c view, @c domain, @c dur
* @discussion Segmentation should be an @c NSDictionary, with keys and values are both @c NSString's only.
* @discussion Custom objects in segmentation will cause events not to be sent to Countly Server.
* @discussion Nested values in segmentation will be ignored by Countly Server event segmentation section.
* @param viewName Name of the view visited, a non-zero length valid string
* @param segmentation Custom segmentation key-value pairs
*/
- (void)recordView:(NSString *)viewName segmentation:(NSDictionary<NSString *, NSString *> *)segmentation;
#if (TARGET_OS_IOS)
/**
* Adds exception for AutoViewTracking.
* @discussion @c UIViewControllers with specified title or class name will be ignored by AutoViewTracking and their appearances and disappearances will not be recorded.
* @discussion Adding an already added @c UIViewController title or subclass name again will have no effect.
* @param exception @c UIViewController title or subclass name to be added as exception
*/
- (void)addExceptionForAutoViewTracking:(NSString *)exception;
/**
* Removes exception for AutoViewTracking.
* @discussion Removing an already removed (or not yet added) @c UIViewController title or subclass name will have no effect.
* @param exception @c UIViewController title or subclass name to be removed
*/
- (void)removeExceptionForAutoViewTracking:(NSString *)exception;
/**
* Temporarily activates or deactivates AutoViewTracking, if AutoViewTracking feature is enabled on initial configuration.
* @discussion If AutoViewTracking feature is not enabled on initial configuration, this property has no effect.
*/
@property (nonatomic) BOOL isAutoViewTrackingActive;
/**
* @c isAutoViewTrackingEnabled property is deprecated. Please use @c isAutoViewTrackingActive property instead.
* @discussion Using this property will have no effect.
*/
@property (nonatomic) BOOL isAutoViewTrackingEnabled DEPRECATED_MSG_ATTRIBUTE("Use 'isAutoViewTrackingActive' property instead!");
#endif
#pragma mark - User Details
/**
* Returns @c CountlyUserDetails singleton to be used throughout the app.
* @return The shared @c CountlyUserDetails object
*/
+ (CountlyUserDetails *)user;
/**
* Handles switching from device ID to custom user ID for logged in users
* @discussion When a user logs in, this user can be tracked with custom user ID instead of device ID.
* @discussion This is just a convenience method that handles setting user ID as new device ID and merging existing data on Countly Server.
* @param userID Custom user ID uniquely defining the logged in user
*/
- (void)userLoggedIn:(NSString *)userID;
/**
* Handles switching from custom user ID to device ID for logged out users
* @discussion When a user logs out, all the data can be tracked with default device ID henceforth.
* @discussion This is just a convenience method that handles resetting device ID to default one and starting a new session.
*/
- (void)userLoggedOut;
#pragma mark - Star Rating
#if (TARGET_OS_IOS)
/**
* Shows star-rating dialog manually and executes completion block after user's action.
* @discussion Completion block has a single NSInteger parameter that indicates 1 to 5 star-rating given by user.
* @discussion If user dismissed dialog without giving a rating, this value will be 0 and it will not be sent to Countly Server.
* @param completion A block object to be executed when user gives a star-rating or dismisses dialog without rating
*/
- (void)askForStarRating:(void(^)(NSInteger rating))completion;
/**
* Presents feedback widget with given ID in a WKWebView placed in a UIViewController.
* @discussion First, the availability of the feedback widget will be checked asynchronously.
* @discussion If the feedback widget with given ID is available, it will be modally presented.
* @discussion Otherwise, @c completionHandler will be called with an @c NSError.
* @discussion @c completionHandler will also be called with @c nil when feedback widget is dismissed by user.
* @discussion Calls to this method will be ignored and @c completionHandler will not be executed if:
* @discussion - Consent for @c CLYConsentStarRating is not given, while @c requiresConsent flag is set on initial configuration.
* @discussion - Current device ID is @c CLYTemporaryDeviceID.
* @discussion - @c widgetID is not a non-zero length valid string.
* @param widgetID ID of the feedback widget created on Countly Server.
* @param completionHandler A completion handler block to be executed when feedback widget is dismissed by user or there is an error.
*/
- (void)presentFeedbackWidgetWithID:(NSString *)widgetID completionHandler:(void (^)(NSError * error))completionHandler;
#endif
#pragma mark - Remote Config
/**
* Returns last retrieved remote config value for given key, if exists.
* @discussion If remote config is never retrieved from Countly Server before, this method will return @c nil.
* @discussion If @c key is not defined in remote config on Countly Server, this method will return @c nil.
* @discussion If Countly Server is not reachable, this method will return the last retrieved value which is stored on device.
* @param key Remote config key specified on Countly Server
*/
- (id)remoteConfigValueForKey:(NSString *)key;
/**
* Manually updates all locally stored remote config values by fetching latest values from Countly Server, and executes completion handler.
* @discussion @c completionHandler has an @c NSError parameter that will be either @ nil or an @c NSError object, depending on result.
* @discussion Calls to this method will be ignored and @c completionHandler will not be executed if:
* @discussion - There is not any consent given, while @c requiresConsent flag is set on initial configuration.
* @discussion - Current device ID is @c CLYTemporaryDeviceID.
* @param completionHandler A completion handler block to be executed when updating of remote config is completed, either with success or failure.
*/
- (void)updateRemoteConfigWithCompletionHandler:(void (^)(NSError * error))completionHandler;
/**
* Manually updates locally stored remote config values only for specified keys, by fetching latest values from Countly Server, and executes completion handler.
* @discussion @c completionHandler has an @c NSError parameter that will be either @ nil or an @c NSError object, depending on result.
* @discussion Calls to this method will be ignored and @c completionHandler will not be executed if:
* @discussion - There is not any consent given, while @c requiresConsent flag is set on initial configuration.
* @discussion - Current device ID is @c CLYTemporaryDeviceID.
* @param keys An array of remote config keys to update
* @param completionHandler A completion handler block to be executed when updating of remote config is completed, either with success or failure
*/
- (void)updateRemoteConfigOnlyForKeys:(NSArray *)keys completionHandler:(void (^)(NSError * error))completionHandler;
/**
* Manually updates locally stored remote config values except for specified keys, by fetching latest values from Countly Server, and executes completion handler.
* @discussion @c completionHandler has an @c NSError parameter that will be either @ nil or an @c NSError object, depending on result.
* @discussion Calls to this method will be ignored and @c completionHandler will not be executed if:
* @discussion - There is not any consent given, while @c requiresConsent flag is set on initial configuration.
* @discussion - Current device ID is @c CLYTemporaryDeviceID.
* @param omitKeys An array of remote config keys to omit from updating
* @param completionHandler A completion handler block to be executed when updating of remote config is completed, either with success or failure
*/
- (void)updateRemoteConfigExceptForKeys:(NSArray *)omitKeys completionHandler:(void (^)(NSError * error))completionHandler;
#pragma mark - Performance Monitoring
/**
* Manually records a network trace for performance monitoring.
* @discussion A network trace is a collection of measured information about a network request.
* @discussion When a network request is completed, a network trace can be recorded manually to be analyzed in Performance Monitoring feature.
* @discussion Trace name needs to be a non-zero length string, otherwise it is ignored.
* @param traceName Trace name, a non-zero length valid string
* @param requestPayloadSize Size of the request's payload in bytes
* @param responsePayloadSize Size of the received response's payload in bytes
* @param responseStatusCode HTTP status code of the received response
* @param startTime UNIX time stamp in milliseconds for the starting time of the request
* @param endTime UNIX time stamp in milliseconds for the ending time of the request
*/
- (void)recordNetworkTrace:(NSString *)traceName requestPayloadSize:(NSInteger)requestPayloadSize responsePayloadSize:(NSInteger)responsePayloadSize responseStatusCode:(NSInteger)responseStatusCode startTime:(long long)startTime endTime:(long long)endTime;
/**
* Starts a performance monitoring custom trace with given name to be ended later.
* @discussion Duration of custom trace will be calculated on ending.
* @discussion Trying to start a custom trace with already started name will have no effect.
* @param traceName Trace name, a non-zero length valid string
*/
- (void)startCustomTrace:(NSString *)traceName;
/**
* Ends a previously started performance monitoring custom trace with given name and metrics.
* @discussion Trying to end a custom trace with already ended (or not yet started) name will have no effect.
* @param traceName Trace name, a non-zero length valid string
* @param metrics Metrics key-value pairs
*/
- (void)endCustomTrace:(NSString *)traceName metrics:(NSDictionary * _Nullable)metrics;
/**
* Cancels a previously started performance monitoring custom trace with given name.
* @discussion Trying to cancel a custom trace with already cancelled (or ended or not yet started) name will have no effect.
* @param traceName Trace name, a non-zero length valid string
*/
- (void)cancelCustomTrace:(NSString *)traceName;
/**
* Clears all previously started performance monitoring custom traces.
* @discussion All previously started performance monitoring custom traces are automatically cleaned when:
* @discussion - Consent for @c CLYConsentPerformanceMonitoring is cancelled
* @discussion - A new app key is set using @c setNewAppKey: method
*/
- (void)clearAllCustomTraces;
/**
* Calculates and records app launch time for performance monitoring.
* @discussion This method should be called when the app is loaded and displayed its first user facing view successfully.
* @discussion e.g. @c viewDidAppear: method of the root view controller or whatever place is suitable for the app's flow.
* @discussion Time passed since the app started to launch will be automatically calculated and recorded for performance monitoring.
* @discussion App launch time can be recorded only once per app launch. So, second and following calls to this method will be ignored.
*/
- (void)appLoadingFinished;
NS_ASSUME_NONNULL_END
@end