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.
|
|
|
//
|
|
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
extern NSString *const kNSNotificationName_BlockedPhoneNumbersDidChange;
|
|
|
|
|
|
|
|
// This class can be safely accessed and used from any thread.
|
|
|
|
@interface OWSBlockingManager : NSObject
|
|
|
|
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
|
|
|
|
+ (instancetype)sharedManager;
|
|
|
|
|
|
|
|
- (void)addBlockedPhoneNumber:(NSString *)phoneNumber;
|
|
|
|
|
|
|
|
- (void)removeBlockedPhoneNumber:(NSString *)phoneNumber;
|
|
|
|
|
|
|
|
// When updating the block list from a sync message, we don't
|
|
|
|
// want to fire a sync message.
|
|
|
|
- (void)setBlockedPhoneNumbers:(NSArray<NSString *> *)blockedPhoneNumbers sendSyncMessage:(BOOL)sendSyncMessage;
|
|
|
|
|
|
|
|
- (NSArray<NSString *> *)blockedPhoneNumbers;
|
|
|
|
|
|
|
|
- (BOOL)isRecipientIdBlocked:(NSString *)recipientId;
|
|
|
|
|
|
|
|
- (void)syncBlockedPhoneNumbers;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|