A feature attachment. More...
Header: | #include <Attachment.h> |
Since: | Esri::ArcGISRuntime 100.0 |
Inherits: | Esri::ArcGISRuntime::Object |
This class was introduced in Esri::ArcGISRuntime 100.0.
Public Functions
virtual | ~Attachment() override |
qint64 | attachmentId() const |
QUrl | attachmentUrl() const |
QString | contentType() const |
Esri::ArcGISRuntime::TaskWatcher | fetchData() |
bool | isDataFetched() const |
QString | name() const |
qint64 | size() const |
Signals
void | fetchDataCompleted(QUuid taskId, const QByteArray &data) |
Detailed Description
A feature attachment is an item associated with a feature but not an attribute of the feature. Where allowed, features may have zero or more attachments. Attachments can be images, documents, and so on. Information about an attachment includes name, size, and content type.
Member Function Documentation
[signal]
void Attachment::fetchDataCompleted (QUuid taskId , const QByteArray &data)
Signal emitted when data has been fetched for this attachment.
- taskId - The task ID for the asynchronous operation.
- data - The data in bytes for the attachment.
[override virtual]
Attachment::~Attachment()
Destructor.
qint64 Attachment::attachmentId () const
Returns the ID of the attachment.
This function was introduced in Esri::ArcGISRuntime 100.1.
QUrl Attachment::attachmentUrl () const
Returns the URL of the attachment if its data is already fetched.
QString Attachment::contentType () const
Returns the MIME type of the attachment file.
Esri::ArcGISRuntime::TaskWatcher Attachment::fetchData ()
Fetches the raw data for the attachment and returns a TaskWatcher for the asynchronous operation.
Only one fetch data operation can be executed at a time for the same attachment.
bool Attachment::isDataFetched () const
Returns true
if the attachment data has already been retrieved.
This is true
if the attachment data has been retrieved previously. Even so, you must call fetchData() to get the data. The operation should complete more quickly since the data is already available locally.
You can request attachment data proactively to reduce the time it takes to retrieve the data from its source. However, to avoid unnecessary communication overhead, you should fetch the data only when the user needs it.
QString Attachment::name() const
Returns the name of the attachment.
qint64 Attachment::size() const
Returns the size of the attachment in bytes.