mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-06 04:32:06 +00:00
31 lines
652 B
Objective-C
31 lines
652 B
Objective-C
#import "HockeySDK.h"
|
|
|
|
#if HOCKEYSDK_FEATURE_TELEMETRY
|
|
|
|
#import "BITTelemetryManager.h"
|
|
#import "BITTelemetryManagerPrivate.h"
|
|
|
|
static char *const kBITTelemetryEventQueue =
|
|
"com.microsoft.ApplicationInsights.telemetryEventQueue";
|
|
|
|
@implementation BITTelemetryManager {
|
|
id _appDidEnterBackgroundObserver;
|
|
id _appWillResignActiveObserver;
|
|
id _sessionStartedObserver;
|
|
id _sessionEndedObserver;
|
|
}
|
|
|
|
- (instancetype)init {
|
|
if((self = [super init])) {
|
|
_telemetryEventQueue = dispatch_queue_create(kBITTelemetryEventQueue, DISPATCH_QUEUE_CONCURRENT);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)startManager {
|
|
}
|
|
|
|
@end
|
|
|
|
#endif /* HOCKEYSDK_FEATURE_TELEMETRY */
|