Provides a set of constants that specify the replication mode of the object store or external repository participant. The replication mode determines how objects are replicated in a replication group. These constants are used by the ReplicationMode property of an ExternalParticipant or ObjectStoreParticipant object (base interface is ReplicationParticipant).

Namespace:  FileNet.Api.Constants
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Enumeration ReplicationMode
C#
public enum ReplicationMode
Visual C++
public enum class ReplicationMode
JavaScript
FileNet.Api.Constants.ReplicationMode = function();
FileNet.Api.Constants.ReplicationMode.createEnum('FileNet.Api.Constants.ReplicationMode', false);

ToggleMembers

TypeMember nameDescription
SLAVE
Slave mode. In this mode, replicated objects in the repository are read-only, and can change only as a result of the propagation of modifications from another repository operating in master mode in the replication group.
MASTER
Master mode. In this mode, replicated objects in the repository can be modified and any modifications are then propagated to other participants in the replication group.

ToggleSee Also