36 lines
831 B
Objective-C
36 lines
831 B
Objective-C
//
|
|
// Copyright 2018 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class SDSAnyWriteTransaction;
|
|
@class SignalServiceAddress;
|
|
@class TSMessage;
|
|
@class TSThread;
|
|
|
|
@protocol ContactsManagerProtocol;
|
|
|
|
@interface OWSDisappearingMessagesJob : NSObject
|
|
|
|
- (instancetype)init NS_DESIGNATED_INITIALIZER;
|
|
|
|
- (void)startAnyExpirationForMessage:(TSMessage *)message
|
|
expirationStartedAt:(uint64_t)expirationStartedAt
|
|
transaction:(SDSAnyWriteTransaction *_Nonnull)transaction;
|
|
|
|
- (void)scheduleRunByTimestamp:(uint64_t)timestamp;
|
|
|
|
// Clean up any messages that expired since last launch immediately
|
|
// and continue cleaning in the background.
|
|
- (void)startIfNecessary;
|
|
|
|
#ifdef TESTABLE_BUILD
|
|
- (void)syncPassForTests;
|
|
#endif
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|