Repository URL to install this package:
|
Version:
1.0.1 ▾
|
//
// DEPushNotificationHandlerRegistry.h
// TestIOSPush
//
// Created by Marco Bonati on 23/05/2017.
//
//
#ifndef DEPushNotificationHandlerRegistry_h
#define DEPushNotificationHandlerRegistry_h
#import "DEPushNotificationHandler.h"
@interface DEPushNotificationHandlerRegistry : NSObject
+ (id)sharedInstance;
- (void)registerNotificationHandler:(id<DEPushNotificationHandler>)handler;
- (void)unregisterNotificationHandler:(id<DEPushNotificationHandler>)handler;
- (BOOL)canHandleMessage:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo;
@end
#endif /* DEPushNotificationHandlerRegistry_h */