BlobInputStreamOptions Class
- java.
lang. Object - com.
azure. storage. blob. options. BlobInputStreamOptions
- com.
public class BlobInputStreamOptions
Extended options that may be passed when opening a blob input stream.
Constructor Summary
Constructor | Description | |
---|---|---|
BlobInputStreamOptions() |
Method Summary
Methods inherited from java.lang.Object
Constructor Details
BlobInputStreamOptions
public BlobInputStreamOptions()
Method Details
getBlockSize
public Integer getBlockSize()
Returns:
The size of each data chunk returned from the service. If block size is large, input stream will make
fewer network calls, but each individual call will send more data and will therefore take longer.
The default value is 4 MB.
getConsistentReadControl
public ConsistentReadControl getConsistentReadControl()
Returns:
ConsistentReadControl Default is E-Tag.
getRange
getRequestConditions
setBlockSize
public BlobInputStreamOptions setBlockSize(Integer blockSize)
Parameters:
blockSize
- The size of each data chunk returned from the service. If block size is large, input stream
will make fewer network calls, but each individual call will send more data and will therefore take longer.
The default value is 4 MB.
Returns:
The updated options.
setConsistentReadControl
public BlobInputStreamOptions setConsistentReadControl(ConsistentReadControl consistentReadControl)
Parameters:
consistentReadControl
- ConsistentReadControl Default is E-Tag.
Returns:
The updated options.
setRange
public BlobInputStreamOptions setRange(BlobRange range)
Parameters:
range
- BlobRange
Returns:
The updated options.
setRequestConditions
public BlobInputStreamOptions setRequestConditions(BlobRequestConditions requestConditions)
Parameters:
requestConditions
- BlobRequestConditions
Returns:
The updated options.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Java