You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//
|
|
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@class TSStorageManager;
|
|
|
|
@class YapDatabaseReadTransaction;
|
|
|
|
|
|
|
|
@interface OWSIncomingMessageFinder : NSObject
|
|
|
|
|
|
|
|
- (instancetype)initWithStorageManager:(TSStorageManager *)storageManager NS_DESIGNATED_INITIALIZER;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Must be called before using this finder.
|
|
|
|
*/
|
|
|
|
+ (void)asyncRegisterExtensionWithStorageManager:(TSStorageManager *)storageManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Detects existance of a duplicate incoming message.
|
|
|
|
*/
|
|
|
|
- (BOOL)existsMessageWithTimestamp:(uint64_t)timestamp
|
|
|
|
sourceId:(NSString *)sourceId
|
|
|
|
sourceDeviceId:(uint32_t)sourceDeviceId
|
|
|
|
transaction:(YapDatabaseReadTransaction *)transaction;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|