Signal-iOS/SignalServiceKit/src/Util/OWSSyncManagerProtocol.h
2018-10-18 16:47:18 -04:00

23 lines
412 B
Objective-C

//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
@class AnyPromise;
@class SignalAccount;
@protocol OWSSyncManagerProtocol <NSObject>
- (void)sendConfigurationSyncMessage;
- (AnyPromise *)syncLocalContact;
- (AnyPromise *)syncAllContacts;
- (AnyPromise *)syncContactsForSignalAccounts:(NSArray<SignalAccount *> *)signalAccounts;
@end
NS_ASSUME_NONNULL_END