IPWorks Cloud 2020 Kotlin Edition

Questions / Feedback?

ShareList Event

Fires once for each share returned when listing shares.

Syntax

public open class DefaultAzurefileEventListener : AzurefileEventListener {
  ...
  public override fun shareList(e: AzurefileShareListEvent) {}
  ...
}

public class AzurefileShareListEvent {
  val name: String?
  val modifiedTime: String?
  val eTag: String?
  val quota: Int
}

Remarks

This event fires once for each share returned when ListShares or GetShareInfo is called.

Name is the name of the share.

ModifiedTime is the last modified time of the share, formatted according to RFC 1123.

ETag is the ETag of the share.

Quota is the share's space quota, in GB.

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