A job returned by the GeodatabaseSyncTask::syncGeodatabase method. More...
Import Statement: | import Esri.ArcGISRuntime 100.15 |
Since: | Esri.ArcGISRuntime 100.0 |
Inherits: |
Properties
- geodatabaseDeltaInfo : GeodatabaseDeltaInfo
- syncLayerResults : list<SyncLayerResult>
Signals
Detailed Description
The result of this job is a list of SyncLayerResult objects, each of which contains the layer ID or table name that each SyncLayerResult refers to. The result can be retrieved after this job's status changes to Enums.JobStatusSucceeded. This list will be empty for a successfully completed job. If individual edits failed then the result array provides these errors grouped by each table using the SyncLayerResult instances. These contain information for each edit error as a FeatureEditResult.
Property Documentation
geodatabaseDeltaInfo : GeodatabaseDeltaInfo |
Returns information on geodatabase upload and download delta files (read-only).
When SyncGeodatabaseParameters::keepGeodatabaseDeltas is set to true
, this property provides information about the synced geodatabase along with the paths to its uploaded and downloaded deltas.
Delta geodatabases allow you to troubleshoot sync problems - for example by inspecting the changes they contain or sending the file to the system administrator for the feature service.
This property will be set even if the job fails. If SyncGeodatabaseParameters::keepGeodatabaseDeltas is false
, this property will be null
.
This property was introduced in Esri.ArcGISRuntime 100.10.
syncLayerResults : list<SyncLayerResult> |
Returns the list of SyncLayerResult objects from this job (read-only).
Signal Documentation
Emitted when the geodatabaseDeltaInfo property of this SyncGeodatabaseJob changes.
Note: The corresponding handler is onGeodatabaseDeltaInfoChanged
.
This signal was introduced in Esri.ArcGISRuntime 100.10.
Emitted when the syncLayerResults property of this SyncGeodatabaseJob changes.
Note: The corresponding handler is onSyncLayerResultsChanged
.