Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
de-push-proxy-plugin / src / ios / DEPushNotificationHandlerRegistry.h
Size: Mime:
//
//  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 */