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.
22 lines
456 B
C
22 lines
456 B
C
7 years ago
|
//
|
||
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "OWSMessageSender.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
7 years ago
|
#ifdef DEBUG
|
||
|
|
||
7 years ago
|
@interface OWSFakeMessageSender : OWSMessageSender
|
||
|
|
||
|
@property (nonatomic, nullable) dispatch_block_t enqueueMessageBlock;
|
||
|
@property (nonatomic, nullable) dispatch_block_t enqueueAttachmentBlock;
|
||
|
@property (nonatomic, nullable) dispatch_block_t enqueueTemporaryAttachmentBlock;
|
||
|
|
||
|
@end
|
||
|
|
||
7 years ago
|
#endif
|
||
|
|
||
7 years ago
|
NS_ASSUME_NONNULL_END
|