session-ios/Signal/src/NotificationTracker.h
2014-05-06 19:41:08 +02:00

13 lines
307 B
Objective-C

#import <Foundation/Foundation.h>
/**
* Tracks which notifications have already been processed, and which are are seen for the first time.
**/
@interface NotificationTracker : NSObject
+(NotificationTracker*) notificationTracker;
-(BOOL) shouldProcessNotification:(NSDictionary*) notification;
@end