次の方法で共有


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