ObjectList Event

Fires once for each object, object version, or multipart upload returned when listing such items.

Syntax

class GoogleStorageObjectListEventParams {
public:
  const QString &ObjectName();
  const QString &LastModified();
  qint64 Size();
  const QString &ETag();
  const QString &OwnerId();
  const QString &OwnerName();
  const QString &UploadId();
  const QString &VersionId();
  bool LatestVersion();
  bool Deleted();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void ObjectList(GoogleStorageObjectListEventParams *e);
// Or, subclass GoogleStorage and override this emitter function. virtual int FireObjectList(GoogleStorageObjectListEventParams *e) {...}

Remarks

This event fires once for each object, or object version, returned when GetObjectInfo, ListObjects, or ListVersions is called.

ObjectName reflects the name of the object.

LastModified reflects the last modified time of the object.

Size reflects the size, in bytes, of the object.

ETag reflects the object's ETag.

OwnerId and OwnerName reflect the Id and display name of the object's owner, respectively. Not applicable when GetObjectInfo is called.

VersionId reflects the Id of the object version (note that the string null is a valid version Id). Only applicable when ListVersions is called, or when GetObjectInfo is called while VersionId is non-empty; empty in all other cases.

LatestVersion indicates whether this is the latest object version. Only applicable when ListVersions is called; true in all other cases.

Deleted indicates whether this object version was deleted or overwritten. Only applicable when ListVersions is called; false in all other cases.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Qt Edition - Version 20.0 [Build 8265]