CBLReplicatorConfiguration
Undocumented
- 
                  
                  The local database to replicate with the target endpoint. DeclarationObjective-C @property (readonly, nonatomic) CBLDatabase *_Nonnull database;
- 
                  
                  The replication endpoint to replicate with. DeclarationObjective-C @property (readonly, nonatomic) id<CBLEndpoint> _Nonnull target;
- 
                  
                  Replication type indicating the direction of the replication. The default value is .pushAndPull which is bidrectional. DeclarationObjective-C @property (assign, readwrite, nonatomic) CBLReplicatorType replicatorType;
- 
                  
                  Should the replicator stay active indefinitely, and push/pull changed documents?. The default value is NO. DeclarationObjective-C @property (assign, readwrite, nonatomic) BOOL continuous;
- 
                  
                  The conflict resolver for this replicator. Setting nil means using the default conflict resolver, where the revision with more history wins. DeclarationObjective-C @property (assign, readwrite, nonatomic) id<CBLConflictResolver> _Nonnull conflictResolver;
- 
                  
                  An Authenticator to authenticate with a remote server. Currently there are two types of the authenticators, CBLBasicAuthenticator and CBLSessionAuthenticator, supported. DeclarationObjective-C @property (assign, readwrite, nonatomic, nullable) CBLAuthenticator *authenticator;
- 
                  
                  If this property is non-null, the server is required to have this exact SSL/TLS certificate, or the connection will fail. DeclarationObjective-C @property (assign, readwrite, nonatomic, nullable) SecCertificateRef pinnedServerCertificate;
- 
                  
                  Extra HTTP headers to send in all requests to the remote target. DeclarationObjective-C @property (assign, readwrite, nonatomic, nullable) NSDictionary<NSString *, NSString *> *headers;
- 
                  
                  A set of Sync Gateway channel names to pull from. Ignored for push replication. The default value is nil, meaning that all accessible channels will be pulled. Note: channels that are not accessible to the user will be ignored by Sync Gateway. DeclarationObjective-C @property (assign, readwrite, nonatomic, nullable) NSArray<NSString *> *channels;
- 
                  
                  A set of document IDs to filter by: if not nil, only documents with these IDs will be pushed and/or pulled. DeclarationObjective-C @property (assign, readwrite, nonatomic, nullable) NSArray<NSString *> *documentIDs;
- 
                  
                  Not available DeclarationObjective-C - (nonnull instancetype)init;
- 
                  
                  Initializes a CBLReplicatorConfiguration with the local database and the target endpoint. DeclarationObjective-C - (nonnull instancetype)initWithDatabase:(nonnull CBLDatabase *)database target:(nonnull id<CBLEndpoint>)target;ParametersdatabaseThe database. targetThe target endpoint. Return ValueThe CBLReplicatorConfiguration object. 
- 
                  
                  Initializes a CBLReplicatorConfiguration with the configuration object. DeclarationObjective-C - (nonnull instancetype)initWithConfig: (nonnull CBLReplicatorConfiguration *)config;ParametersconfigThe configuration. Return ValueThe CBLReplicatorConfiguration object. 
 CBLReplicatorConfiguration Class Reference
        CBLReplicatorConfiguration Class Reference