CBLDocumentReplication

@interface CBLDocumentReplication : NSObject

Document replication event

  • The replicator.

    Declaration

    Objective-C

    @property (readonly, nonatomic) CBLReplicator *_Nonnull replicator;

    Swift

    var replicator: CBLReplicator { get }
  • The flag indicating that the replication is push or pull.

    Declaration

    Objective-C

    @property (readonly, nonatomic) BOOL isPush;

    Swift

    var isPush: Bool { get }
  • A list of the replicated documents.

    Declaration

    Objective-C

    @property (readonly, nonatomic)
        NSArray<CBLReplicatedDocument *> *_Nonnull documents;

    Swift

    var documents: [CBLReplicatedDocument] { get }
  • Not available

    Declaration

    Objective-C

    - (nonnull instancetype)init;