mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
2eaaba9082
I'm not sure how this is happening, but this will prevent the crash and give us additional diagnostic data in the cases where it is happening. // FREEBIE
30 lines
816 B
Objective-C
30 lines
816 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
@class YapDatabaseReadWriteTransaction;
|
|
|
|
/**
|
|
* Some interactions track read/unread status.
|
|
* e.g. incoming messages and call notifications
|
|
*/
|
|
@protocol OWSReadTracking <NSObject>
|
|
|
|
/**
|
|
* Has the local user seen the interaction?
|
|
*/
|
|
@property (nonatomic, readonly, getter=wasRead) BOOL read;
|
|
|
|
@property (nonatomic, readonly) uint64_t timestampForSorting;
|
|
@property (nonatomic, readonly) NSString *uniqueThreadId;
|
|
|
|
- (BOOL)shouldAffectUnreadCounts;
|
|
|
|
/**
|
|
* Used for *responding* to a remote read receipt or in response to user activity.
|
|
*/
|
|
- (void)markAsReadWithTransaction:(YapDatabaseReadWriteTransaction *)transaction
|
|
sendReadReceipt:(BOOL)sendReadReceipt
|
|
updateExpiration:(BOOL)updateExpiration;
|
|
|
|
@end
|