你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

BlobAcquireLeaseOptions Class

  • java.lang.Object
    • com.azure.storage.blob.options.BlobAcquireLeaseOptions

public class BlobAcquireLeaseOptions

Extended options that may be passed when acquiring a lease to a blob or container.

Constructor Summary

Constructor Description
BlobAcquireLeaseOptions(int durationInSeconds)

Creates a new instance of BlobAcquireLeaseOptions.

Method Summary

Modifier and Type Method and Description
int getDuration()

Gets the duration of the lease.

BlobLeaseRequestConditions getRequestConditions()

Gets the BlobLeaseRequestConditions.

BlobAcquireLeaseOptions setRequestConditions(BlobLeaseRequestConditions requestConditions)

Sets the BlobLeaseRequestConditions.

Methods inherited from java.lang.Object

Constructor Details

BlobAcquireLeaseOptions

public BlobAcquireLeaseOptions(int durationInSeconds)

Creates a new instance of BlobAcquireLeaseOptions.

Parameters:

durationInSeconds - The duration of the lease between 15 to 60 seconds or -1 for an infinite duration.

Method Details

getDuration

public int getDuration()

Gets the duration of the lease.

Returns:

The duration of the lease between 15 to 60 seconds or -1 for an infinite duration.

getRequestConditions

public BlobLeaseRequestConditions getRequestConditions()

Gets the BlobLeaseRequestConditions.

Returns:

setRequestConditions

public BlobAcquireLeaseOptions setRequestConditions(BlobLeaseRequestConditions requestConditions)

Sets the BlobLeaseRequestConditions.

Parameters:

requestConditions - BlobLeaseRequestConditions

Returns:

The updated options.

Applies to