session-ios/Signal/src/NotificationTracker.h

13 lines
307 B
C
Raw Normal View History

2014-05-06 19:41:08 +02:00
#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