com.esri.arcgis.geodatabase
Interface esriReplicaModelType

All Superinterfaces:
Serializable

public interface esriReplicaModelType
extends Serializable

Indicates how the data will be stored in the child geodatabase.

Remarks

The esriReplicaModelType enumeration contains values that represent different replica model types. This can be set for check-out, one way, and two way replicas.

The replica model type is set using the IGPReplicaDescription::ReplicaModelType property on a replica description. The model type may be set before or after initializing the replica description with the IGPReplicaDescription::Init method. See the GPReplicaDescription coclass for more information.

The members of this enumeration are:

esriModelTypeSimple = 1 - Only simple data types are stored in the child. If the parent has annotation or dimension feature classes, the annotation or dimension feature classes are not stored in the child. If the parent has a topology or geometric network, the participating feature classes are stored in the child without the topology or geometric network. Storing only simple data types in the child allows edits to be made by a non-geodatabase editor. This is useful in systems where some of the data sources involved are not geodatabases. For example, you may want to apply edits made in a shapefile or a non-ArcGIS data format to your geodatabase. When synchronizing edits from simple features in the child to the parent, reactive behavior is applied in the parent to update topology dirty areas, maintain network connectivity and maintain annotation and dimension features.

esriModelTypeFull = 2 - All features, including complex features, are stored in the child the same way they are stored in the parent. If the parent has annotation or dimension feature classes, the annotation or dimension feature classes will be stored in the child. If the parent has a topology or geometric network, it will be stored in a corresponding topology or geometric network in the child. Storing complex features in the child is useful in systems where all data sources involved are geodatabases, and you'll be using full geodatabase editors like the one provided in ArcMap. With this model, no additional geodatabase behaviour is applied when synchronizing because it has already been applied with the geodatabase editor in the child.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriModelTypeFullGeodatabase
          All data is stored the same way as in the parent geodatabase.
static int esriModelTypeSimple
          Data is stored as simple features.
 

Field Detail

esriModelTypeSimple

static final int esriModelTypeSimple
Data is stored as simple features.

See Also:
Constant Field Values

esriModelTypeFullGeodatabase

static final int esriModelTypeFullGeodatabase
All data is stored the same way as in the parent geodatabase.

See Also:
Constant Field Values