mirror of https://github.com/oxen-io/session-ios
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.
29 lines
635 B
C
29 lines
635 B
C
8 years ago
|
//
|
||
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@class YapDatabase;
|
||
|
@class YapDatabaseReadTransaction;
|
||
|
|
||
|
@interface OWSIncomingMessageFinder : NSObject
|
||
|
|
||
|
- (instancetype)initWithDatabase:(YapDatabase *)database NS_DESIGNATED_INITIALIZER;
|
||
|
|
||
|
/**
|
||
|
* Must be called before using this finder.
|
||
|
*/
|
||
|
- (void)asyncRegisterExtension;
|
||
|
|
||
|
/**
|
||
|
* Detects existance of a duplicate incoming message.
|
||
|
*/
|
||
|
- (BOOL)existsMessageWithTimestamp:(uint64_t)timestamp
|
||
|
sourceId:(NSString *)sourceId
|
||
|
sourceDeviceId:(uint32_t)sourceDeviceId;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|