The following members of QML type GeodatabaseSyncTask are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.
Properties
- generateGeodatabaseJobs : list<GenerateGeodatabaseJob>
(obsolete)
- importGeodatabaseDeltaResults : list<SyncLayerResult>
(obsolete)
- importGeodatabaseDeltaStatus : Enums.TaskStatus
(obsolete)
- syncGeodatabaseJobs : list<SyncGeodatabaseJob>
(obsolete)
Signals
- generateGeodatabaseJobsChanged()
(obsolete)
- importGeodatabaseDeltaStatusChanged()
(obsolete)
- syncGeodatabaseJobsChanged()
(obsolete)
Methods
- string importGeodatabaseDelta(Geodatabase geodatabase, string pathToDeltaFile)
(obsolete)
Property Documentation
generateGeodatabaseJobs : list<GenerateGeodatabaseJob> |
This property is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Returns the list of GenerateGeodatabaseJob objects in this GeodatabaseSyncTask (read-only).
Each job can be tracked using its jobStatus property.
This property is deprecated at 100.15. Use the Job that is returned from generateGeodatabase instead.
See also GenerateGeodatabaseJob.
importGeodatabaseDeltaResults : list<SyncLayerResult> |
This property is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Returns the list of SyncLayerResult objects that are the result of importing a geodatabase delta (read-only).
Prefer to use GeodatabaseSyncTaskUtility to import geodatabase delta.
This property is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Returns the current status of the importGeodatabaseDelta method (read-only).
Prefer to use GeodatabaseSyncTaskUtility to import geodatabase delta.
See also Enums.TaskStatus.
syncGeodatabaseJobs : list<SyncGeodatabaseJob> |
This property is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Returns the list of SyncGeodatabaseJob objects in this GeodatabaseSyncTask (read-only).
Each job can be tracked using its jobStatus property.
This property is deprecated at 100.15. Use the Job that is returned from syncGeodatabase instead.
See also SyncGeodatabaseJob.
Signal Documentation
This signal is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Emitted when the generateGeodatabaseJobs property of this GeodatabaseSyncTask changes. This signal is deprecated at 100.15. Use the Job that is returned from generateGeodatabase instead.
Note: The corresponding handler is onGenerateGeodatabaseJobsChanged
.
This signal is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Emitted when the importGeodatabaseDeltaStatus property of this GeodatabaseSyncTask changes.
Prefer to use GeodatabaseSyncTaskUtility to import geodatabase delta.
Note: The corresponding handler is onImportGeodatabaseDeltaStatusChanged
.
This signal is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Emitted when the syncGeodatabaseJobs property of this GeodatabaseSyncTask changes. This signal is deprecated at 100.15. Use the Job that is returned from syncGeodatabase instead.
Note: The corresponding handler is onSyncGeodatabaseJobsChanged
.
Method Documentation
string importGeodatabaseDelta(Geodatabase geodatabase, string pathToDeltaFile) |
This method is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Starts a task to import a geodatabase delta and applies it to the given geodatabase.
- geodatabase - The mobile geodatabase to apply the import to.
- pathToDeltaFile - The path to delta file on the local file system to import the delta from.
Returns the task ID for the new task.
Prefer to use GeodatabaseSyncTaskUtility to import geodatabase delta.