IPWorks Cloud 2020 Java Edition

Questions / Feedback?

ContainerList Event

Fires once for each container returned when listing containers.

Syntax

public class DefaultAzureblobEventListener implements AzureblobEventListener {
  ...
  public void containerList(AzureblobContainerListEvent e) {}
  ...
}

public class AzureblobContainerListEvent {
  public String name;
  public String modifiedTime;
  public String ETag;
  public boolean isLeased;
  public int leaseState;
}

Remarks

This event fires once for each container returned when ListContainers or GetContainerInfo is called.

Name is the name of the container.

ModifiedTime reflects the last modified time of the container, formatted according to RFC 1123.

ETag is the container's ETag.

IsLeased indicates whether the container is currently leased.

LeaseState reflects the lease state of the container. Possible values are:

aclsAvailable (0) The container's lease is unlocked and can be acquired.
aclsLeased (1) The container's lease is locked.
aclsExpired (2) The lease duration has expired.
aclsBreaking (3) The lease has been broken, but will continue to be locked until the break period expires.
aclsBroken (4) The lease has been broken, and the break period has expired.

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