ReplicationDetails

public protocol ReplicationDetails: ReplicationSource

Replication configuration elements

  • Indicates this replication should be continous, or not.

    A repeating replication detects and automatically syncs data changes until explicitly stopped by calling stopReplication whereas a non-repeating replication syncs data with the service instance once then stops.

    Declaration

    Swift

    var isRepeating: Bool
  • Indicates the data replication should be both directions: client to server and server to client, or one-way: only server to client.

    Declaration

    Swift

    var isBidirectional: Bool