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.
27 lines
722 B
Objective-C
27 lines
722 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OWSSignalServiceProtosEnvelope;
|
|
@class OWSStorage;
|
|
|
|
// This class is used to write incoming (encrypted, unprocessed)
|
|
// messages to a durable queue and then decrypt them in the order
|
|
// in which they were received. Successfully decrypted messages
|
|
// are forwarded to OWSBatchMessageProcessor.
|
|
@interface OWSMessageReceiver : NSObject
|
|
|
|
+ (instancetype)sharedInstance;
|
|
|
|
+ (NSString *)databaseExtensionName;
|
|
+ (void)asyncRegisterDatabaseExtension:(OWSStorage *)storage;
|
|
|
|
- (void)handleReceivedEnvelope:(OWSSignalServiceProtosEnvelope *)envelope;
|
|
- (void)handleAnyUnprocessedEnvelopesAsync;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|