com.esri.arcgis.geodatabase
Interface esriReplicaAccessType

All Superinterfaces:
Serializable

public interface esriReplicaAccessType
extends Serializable

Replica access types.

Remarks

The esriReplicaAccessType enumeration contains values that represent different replica access types.

When creating a replica the access type is set on the GPReplicaOptions object. Both the IGeodataserver:CreateReplica method and IReplicationAgent::CreateReplica method takes a reference to a GPReplicaOptions object. See the GPreplicaOptions, Geodataserver and ReplicationAgent coclasses for more information.

The members of this enumeration are represented as follows:

You may retrieve the access type of an existing replica by querying the AccessType property. From a GPReplica this is available using the IGPReplica::AccessType property. If you have reference to a Replica object you can access this using IReplica2::AccessType property. See the GPReplica and Replica coclasses for more information.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Field Summary
static int esriReplicaAccessNone
          Replica access is undefined.
static int esriReplicaBothReadWrite
          Read write on both parent and child replica.
static int esriReplicaChildReadOnly
          Read only child replica (1 way replica).
static int esriReplicaParentOrChildReadOnly
          Readonly replicas on either parent and child replica.
static int esriReplicaParentReadOnly
          Read only parent replica.
 

Field Detail

esriReplicaAccessNone

static final int esriReplicaAccessNone
Replica access is undefined.

See Also:
Constant Field Values

esriReplicaChildReadOnly

static final int esriReplicaChildReadOnly
Read only child replica (1 way replica).

See Also:
Constant Field Values

esriReplicaParentReadOnly

static final int esriReplicaParentReadOnly
Read only parent replica.

See Also:
Constant Field Values

esriReplicaBothReadWrite

static final int esriReplicaBothReadWrite
Read write on both parent and child replica.

See Also:
Constant Field Values

esriReplicaParentOrChildReadOnly

static final int esriReplicaParentOrChildReadOnly
Readonly replicas on either parent and child replica.

See Also:
Constant Field Values