OfflineMapSyncResult Class
The result of an OfflineMapSyncJob. More...
Header: | #include <OfflineMapSyncResult> |
Since: | Esri::ArcGISRuntime 100.1 |
Inherits: | Esri::ArcGISRuntime::Object |
This class was introduced in Esri::ArcGISRuntime 100.1.
Public Functions
virtual | ~OfflineMapSyncResult() override |
bool | hasErrors() const |
bool | isMobileMapPackageReopenRequired() const |
QMap<Esri::ArcGISRuntime::FeatureLayer *, Esri::ArcGISRuntime::OfflineMapSyncLayerResult *> | layerResults() const |
QMap<Esri::ArcGISRuntime::FeatureTable *, Esri::ArcGISRuntime::OfflineMapSyncLayerResult *> | tableResults() const |
Detailed Description
Member Function Documentation
[override virtual]
OfflineMapSyncResult::~OfflineMapSyncResult()
Destructor.
bool OfflineMapSyncResult::hasErrors() const
Returns whether offline map sync result has synchronization errors available.
bool OfflineMapSyncResult::isMobileMapPackageReopenRequired() const
Returns whether the mobile map package must be closed and reopened with a new instance to allow the updates to take effect.
In some cases, applying updates may require files such as mobile geodatabases to be replaced with a new version. When reopen is required, this property will be true
and you need to:
- Release all instances of the MobileMapPackage and its maps and layers. For example, you should remove any Map instances from the MapView and remove layers and geodatabases from custom views such as lists and tables of contents. This will allow files to be closed.
- Call MobileMapPackage::close to close the mobile map package instance and files.
- Create a new MobileMapPackage instance with the same path.
- Load the new MobileMapPackage. This will apply updates to geodatabases that have been replaced via a scheduled updates workflow.
This function was introduced in Esri::ArcGISRuntime 100.6.
QMap<Esri::ArcGISRuntime::FeatureLayer *, Esri::ArcGISRuntime::OfflineMapSyncLayerResult *> OfflineMapSyncResult::layerResults() const
Returns the synchronization results for geodatabase feature layers that could be synchronized.
QMap<Esri::ArcGISRuntime::FeatureTable *, Esri::ArcGISRuntime::OfflineMapSyncLayerResult *> OfflineMapSyncResult::tableResults() const
Returns the synchronization results for feature tables that could be synchronized.