24 lines
665 B
Objective-C
24 lines
665 B
Objective-C
//
|
|
// Copyright (c) 2021 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OWSIncomingSentMessageTranscript;
|
|
@class SDSAnyWriteTransaction;
|
|
@class SSKProtoSyncMessageSentUpdate;
|
|
@class TSAttachmentStream;
|
|
|
|
// This job is used to process "outgoing message" notifications from linked devices.
|
|
@interface OWSRecordTranscriptJob : NSObject
|
|
|
|
+ (instancetype)new NS_UNAVAILABLE;
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
+ (void)processIncomingSentMessageTranscript:(OWSIncomingSentMessageTranscript *)incomingSentMessageTranscript
|
|
transaction:(SDSAnyWriteTransaction *)transaction;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|