[explicit, since Esri::ArcGISRuntime 100.12]
ServiceGeodatabase::ServiceGeodatabase(Esri::ArcGISRuntime::PortalItem *portalItem, QObject *parent = nullptr)
Creates a new ServiceGeodatabase from a feature service portal item, and connects to the default version in the feature service.
If the service is branch versioned, the ServiceGeodatabase will connect to the default version.
This function was introduced in Esri::ArcGISRuntime 100.12.
See also portalItem.
[explicit]
ServiceGeodatabase::ServiceGeodatabase(const QUrl &url, QObject *parent = nullptr)
Creates a new ServiceGeodatabase connected to the default version in a feature service.
If the service is branch versioned, the ServiceGeodatabase will connect to the default version.
[since Esri::ArcGISRuntime 100.12]
ServiceGeodatabase::ServiceGeodatabase(Esri::ArcGISRuntime::PortalItem *portalItem, Esri::ArcGISRuntime::FeatureServiceSessionType sessionType, QObject *parent = nullptr)
Creates a new ServiceGeodatabase from a feature service portal item, and connects to the default version in the feature service.
If the service is branch versioned, the ServiceGeodatabase will connect to the default version.
If using FeatureServiceSessionType::Persistent and the service is not branch versioned, the ServiceGeodatabase will fail to load.
If using FeatureServiceSessionType::Persistent, it is important to call closeAsync before destruction.
This function was introduced in Esri::ArcGISRuntime 100.12.
See also portalItem.
[since Esri::ArcGISRuntime 100.12]
ServiceGeodatabase::ServiceGeodatabase(Esri::ArcGISRuntime::PortalItem *portalItem, const QString &versionName, QObject *parent = nullptr)
Creates a new ServiceGeodatabase from a feature service portal item, and connects to a specific version in the feature service.
If a version with the name does not exist, or the service is not branch versioned, the ServiceGeodatabase will fail to load. If using FeatureServiceSessionType::Persistent and the service is not branch versioned, the ServiceGeodatabase will fail to load.
This function was introduced in Esri::ArcGISRuntime 100.12.
See also portalItem.
[since Esri::ArcGISRuntime 100.10]
ServiceGeodatabase::ServiceGeodatabase(const QUrl &url, Esri::ArcGISRuntime::FeatureServiceSessionType sessionType, QObject *parent = nullptr)
Creates a new ServiceGeodatabase connected to the default version in a feature service.
If the service is branch versioned, the ServiceGeodatabase will connect to the default version.
If using FeatureServiceSessionType::Persistent and the service is not branch versioned, the ServiceGeodatabase will fail to load.
If using FeatureServiceSessionType::Persistent, it is important to call closeAsync before destruction.
This function was introduced in Esri::ArcGISRuntime 100.10.
ServiceGeodatabase::ServiceGeodatabase(const QUrl &url, const QString &versionName, QObject *parent = nullptr)Creates a new ServiceGeodatabase connected to a specific version in a feature service.
If a version with the name does not exist, or the service is not branch versioned, the ServiceGeodatabase will fail to load. If using l {Esri::ArcGISRuntime::FeatureServiceSessionType} {FeatureServiceSessionType::Persistent} and the service is not branch versioned, the ServiceGeodatabase will fail to load.
[since Esri::ArcGISRuntime 100.12]
ServiceGeodatabase::ServiceGeodatabase(Esri::ArcGISRuntime::PortalItem *portalItem, const QString &versionName, Esri::ArcGISRuntime::FeatureServiceSessionType sessionType, QObject *parent = nullptr)
Creates a new ServiceGeodatabase from a feature service portal item, and connects to a specific version in the feature service.
If a version with the name does not exist, or the service is not branch versioned, the ServiceGeodatabase will fail to load.
If using FeatureServiceSessionType::Persistent and the service is not branch versioned, the ServiceGeodatabase will fail to load.
If using FeatureServiceSessionType::Persistent, it is important to call closeAsync before destruction.
This function was introduced in Esri::ArcGISRuntime 100.12.
See also portalItem.
[since Esri::ArcGISRuntime 100.10]
ServiceGeodatabase::ServiceGeodatabase(const QUrl &url, const QString &versionName, Esri::ArcGISRuntime::FeatureServiceSessionType sessionType, QObject *parent = nullptr)
Creates a new `ServiceGeodatabase` connected to a specific version in a feature service.
If a version with the name does not exist, or the service is not branch versioned, the ServiceGeodatabase will fail to load.
If using FeatureServiceSessionType::Persistent and the service is not branch versioned, the ServiceGeodatabase will fail to load.
If using FeatureServiceSessionType::Persistent, it is important to call closeAsync before destruction.
This function was introduced in Esri::ArcGISRuntime 100.10.
[override virtual noexcept]
ServiceGeodatabase::~ServiceGeodatabase()
Destructor.
[since Esri::ArcGISRuntime 200.2]
QFuture<QList<Esri::ArcGISRuntime::FeatureTableEditResult *>> ServiceGeodatabase::applyEditsAsync(QObject *parent = nullptr)
Applies all local edits in all tables to the service.
This method applies all feature table edits to the feature service as a single transaction. If one of the edits fails, all edits are rolled-back, and geodatabase integrity is preserved. This is the recommended approach to applying edits and is typically more efficient than calling ServiceFeatureTable::applyEdits on each table.
However, this method can only succeed if all tables either support or do not support global IDs. A mix of global ID support is not permitted and will result in ErrorType::GeodatabaseGlobalIdSupportMismatch.
Use ArcGISFeatureServiceInfo::canUseServiceGeodatabaseApplyEdits to determine whether you can successfully apply your edits through this method.
This method returns a QFuture for the asynchronous operation. Use future.then() to continue processing when the operation completes. Use future.onFailed() to handle exceptions of type ErrorException.
See Working with QFuture for further details.
This function was introduced in Esri::ArcGISRuntime 200.2.
See also FeatureServiceSessionType.
[override virtual]
void ServiceGeodatabase::cancelLoad()
Reimplements: Loadable::cancelLoad().
Cancels loading the metadata for the object.
Cancels loading the metadata if the object is loading.
See Loadable.
[since Esri::ArcGISRuntime 200.2]
QFuture<void> ServiceGeodatabase::closeAsync()
Closes this service geodatabase. A request to stop any active reading or editing sessions with the feature service is sent and once this asynchronous process is complete, this service geodatabase will be closed.
Before calling this method, there should be no references to all related data. For example, terminate fetch versions, create version, switch, apply or undo edits, remove feature layers, and release tables from map.
After calling this method, accessing this service geodatabase or any of its connected tables will fail with ErrorType::GeodatabaseDatabaseClosed.
Closing this service geodatabase is not necessary if it has not been loaded. This method returns a QFuture for the asynchronous operation. Use future.then() to continue processing when the operation completes. Use future.onFailed() to handle exceptions of type ErrorException.
See Working with QFuture for further details.
This function was introduced in Esri::ArcGISRuntime 200.2.
QList<Esri::ArcGISRuntime::ServiceFeatureTable *> ServiceGeodatabase::connectedTables() constReturns the collection of feature tables managed by the ServiceGeodatabase.
[since Esri::ArcGISRuntime 200.2]
QFuture<Esri::ArcGISRuntime::ServiceVersionInfo *> ServiceGeodatabase::createVersionAsync(Esri::ArcGISRuntime::ServiceVersionParameters *newVersion, QObject *parent = nullptr)
Returns a new version in the service based on the default version.
Branch versioning requires that the default version always be the ancestor of all other versions.
If the service isn't branch versioned, a ErrorType::MappingBranchVersioningNotSupportedByService is thrown.
If the version parameters do not include a name, an error is thrown. This method returns a QFuture for the asynchronous operation. Use future.then() to continue processing when the operation completes. Use future.onFailed() to handle exceptions of type ErrorException.
See Working with QFuture for further details.
This function was introduced in Esri::ArcGISRuntime 200.2.
QString ServiceGeodatabase::defaultVersionName() constReturns the name of the default version.
[signal]
void ServiceGeodatabase::doneLoading(const Esri::ArcGISRuntime::Error &loadError)
Signal emitted when this object is done loading.
Note: If there is a load error it will also be emitted on the errorOccurred
signal.
Returns a list of all versions on the service.
If the service isn't branch versioned, a ErrorType::MappingBranchVersioningNotSupportedByService is thrown.
This method returns a QFuture for the asynchronous operation. Use future.then() to continue processing when the operation completes. Use future.onFailed() to handle exceptions of type ErrorException.
See Working with QFuture for further details.
since Esri::ArcGISRuntime 200.2
bool ServiceGeodatabase::hasLocalEdits() constReturns a bool
that determines whether any the tables in the Esri::ArcGISRuntime::ServiceGeodatabase have unapplied edits.
Returns a bool
that determines whether the service supports branch versioning.
[override virtual]
void ServiceGeodatabase::load()
Reimplements: Loadable::load().
Loads the metadata for the object asynchronously.
Loads the metadata if the object is not loaded.
See Loadable.
[override virtual]
Esri::ArcGISRuntime::Error ServiceGeodatabase::loadError() const
Reimplements: Loadable::loadError() const.
Returns the load error.
See Loadable.
See also Error.
[override virtual]
Esri::ArcGISRuntime::LoadStatus ServiceGeodatabase::loadStatus() const
Reimplements: Loadable::loadStatus() const.
Returns the load status.
See Loadable.
See also LoadStatus.
[signal]
void ServiceGeodatabase::loadStatusChanged(Esri::ArcGISRuntime::LoadStatus loadStatus)
Signal emitted when the load status changes for this object.
See also Loadable.
[since Esri::ArcGISRuntime 100.12]
Esri::ArcGISRuntime::PortalItem *ServiceGeodatabase::portalItem() const
Returns the PortalItem which the ServiceGeodatabase was created from.
This function was introduced in Esri::ArcGISRuntime 100.12.
See also ServiceGeodatabase(Esri::ArcGISRuntime::PortalItem*, QObject*).
[override virtual]
void ServiceGeodatabase::retryLoad()
Reimplements: Loadable::retryLoad().
Loads or retries loading metadata for the object asynchronously.
Will retry loading the metadata if the object is failed to load. Will load the object if it is not loaded. Will not retry to load the object if the object is loaded. Will always call the done loading if this is called.
See Loadable.
Esri::ArcGISRuntime::ArcGISFeatureServiceInfo ServiceGeodatabase::serviceInfo() constReturns the metadata of the service this object is connected to.
[since Esri::ArcGISRuntime 100.10]
Esri::ArcGISRuntime::FeatureServiceSessionType ServiceGeodatabase::sessionType() const
Returns the type of read and edit sessions to use when working with the service.
The default value is FeatureServiceSessionType::Transient.
If the feature service this ServiceGeodatabase references is not branch-versioned, only FeatureServiceSessionType::Transient is supported.
If using FeatureServiceSessionType::Persistent, it is important to call closeAsync before destruction.
Cannot be set after the ServiceGeodatabase is loaded. When the ServiceGeodatabase is created by loading a Map, use LoadSettings to control the session type.
This function was introduced in Esri::ArcGISRuntime 100.10.
See also setSessionType() and LoadSettings::featureServiceSessionType.
[since Esri::ArcGISRuntime 100.10]
void ServiceGeodatabase::setSessionType(Esri::ArcGISRuntime::FeatureServiceSessionType sessionType)
Sets the sessionType to sessionType.
Cannot be set after the ServiceGeodatabase is loaded.
This function was introduced in Esri::ArcGISRuntime 100.10.
See also sessionType.
QFuture<void> ServiceGeodatabase::switchVersionAsync(const QString &versionName)Switches all the connected feature tables to the new version.
An error is thrown if:
Check the result of hasLocalEdits before attempting to switch versions, to make sure all changes are saved to the service or discarded from the local cache. Use the applyEditsAsync or undoLocalEditsAsync methods as appropriate to save or discard changes before switching versions.
This method returns a QFuture for the asynchronous operation. Use future.then() to continue processing when the operation completes. Use future.onFailed() to handle exceptions of type ErrorException.
See Working with QFuture for further details.
since Esri::ArcGISRuntime 200.2
Esri::ArcGISRuntime::ServiceFeatureTable *ServiceGeodatabase::table(qint64 layerId)Returns a service feature table object from the ID of a layer or table in the service.
If a table instance for the layer already exists in ServiceGeodatabase::connectedTables, the existing object will be returned. Otherwise, a new ServiceFeatureTable will be created.
If no table or layer exists in the service with the given ID, an error will occur.
See also errorOccurred.
[since Esri::ArcGISRuntime 200.2]
QFuture<void> ServiceGeodatabase::undoLocalEditsAsync()
Undos all of the local edits in all the tables. This method returns a QFuture for the asynchronous operation. Use future.then() to continue processing when the operation completes. Use future.onFailed() to handle exceptions of type ErrorException.
See Working with QFuture for further details.
This function was introduced in Esri::ArcGISRuntime 200.2.
See also FeatureServiceSessionType.
[override virtual]
QUrl ServiceGeodatabase::url() const
Reimplements: RemoteResource::url() const.
Returns the URL of the feature service or the portal item to connect to.
Use ArcGISFeatureServiceInfo::url to get the feature service URL.
QString ServiceGeodatabase::versionName() constReturns the name of the version the ServiceGeodatabase is currently connected to.
To change the version this ServiceGeodatabase is connected to, use the switchVersionAsync(const QString&) method.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4