IPWorks Cloud 2020 Kotlin Edition

Questions / Feedback?

PartList Event

Fires once for every part returned when listing a multipart upload's parts.

Syntax

public open class DefaultWasabiEventListener : WasabiEventListener {
  ...
  public override fun partList(e: WasabiPartListEvent) {}
  ...
}

public class WasabiPartListEvent {
  val partNumber: Int
  val objectName: String?
  val lastModified: String?
  val size: Long
  val eTag: String?
  val ownerId: String?
  val ownerName: String?
}

Remarks

This event fires once for each multipart upload part returned when ListParts is called.

PartNumber reflects the part's number.

ObjectName reflects the name of the object the multipart upload is for.

LastModified reflects the last modified time of the part.

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

ETag reflects the part's ETag of the part.

OwnerId and OwnerName reflect the Id and display name of the part's owner, respectively.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Kotlin Edition - Version 20.0 [Build 7941]