2018-01-26 00:14:22 +01:00
|
|
|
//
|
|
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2018-04-04 03:22:02 +02:00
|
|
|
@class TSMessage;
|
2018-01-26 00:14:22 +01:00
|
|
|
@class TSThread;
|
2018-04-04 03:22:02 +02:00
|
|
|
@class YapDatabaseReadTransaction;
|
2018-01-26 00:14:22 +01:00
|
|
|
|
2018-01-30 21:05:04 +01:00
|
|
|
@interface OWSMessageUtils : NSObject
|
2018-01-26 00:14:22 +01:00
|
|
|
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
+ (instancetype)sharedManager;
|
|
|
|
|
|
|
|
- (NSUInteger)unreadMessagesCount;
|
|
|
|
- (NSUInteger)unreadMessagesCountExcept:(TSThread *)thread;
|
|
|
|
|
2018-01-30 21:05:04 +01:00
|
|
|
- (void)updateApplicationBadgeCount;
|
|
|
|
|
2018-01-26 00:14:22 +01:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|