mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-21 12:21:31 +03:00
31 lines
989 B
Objective-C
31 lines
989 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
* This is required for Wrapper SDKs that need to provide custom behavior surrounding the setup of crash handlers.
|
|
*/
|
|
@protocol MSCrashHandlerSetupDelegate <NSObject>
|
|
|
|
@optional
|
|
|
|
/**
|
|
* Callback method that will be called immediately before crash handlers are set up.
|
|
*/
|
|
- (void)willSetUpCrashHandlers;
|
|
|
|
/**
|
|
* Callback method that will be called immediately after crash handlers are set up.
|
|
*/
|
|
- (void)didSetUpCrashHandlers;
|
|
|
|
/**
|
|
* Callback method that gets a value indicating whether the SDK should enable an uncaught exception handler.
|
|
*
|
|
* @return YES if SDK should enable uncaught exception handler, otherwise NO.
|
|
*
|
|
* @discussion Do not register an UncaughtExceptionHandler for Xamarin as we rely on the Xamarin runtime to report NSExceptions. Registering
|
|
* our own UncaughtExceptionHandler will cause the Xamarin debugger to not work properly (it will not stop for NSExceptions).
|
|
*/
|
|
- (BOOL)shouldEnableUncaughtExceptionHandler;
|
|
|
|
@end
|