PrefixList Event

Fires once for each common prefix returned when listing objects.

Syntax

class S3ClientPrefixListEventParams {
public:
  const QString &BucketName();
  const QString &Prefix();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void PrefixList(S3ClientPrefixListEventParams *e);
// Or, subclass S3Client and override this emitter function. virtual int FirePrefixList(S3ClientPrefixListEventParams *e) {...}

Remarks

This event fires once for each common prefix returned when ListObjects or ListVersions is called when ObjectDelimiter is non-empty. Refer to ObjectDelimiter for more information.

BucketName reflects the name of the bucket that the prefix is in.

Prefix is the common prefix.

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