DataLakeFileInputStreamOptions Class
- java.
lang. Object - com.
azure. storage. file. datalake. options. DataLakeFileInputStreamOptions
- com.
public final class DataLakeFileInputStreamOptions
Extended options that may be passed when opening a blob input stream.
Constructor Summary
Constructor | Description |
---|---|
DataLakeFileInputStreamOptions() |
Creates a new instance of DataLakeFileInputStreamOptions. |
Method Summary
Methods inherited from java.lang.Object
Constructor Details
DataLakeFileInputStreamOptions
public DataLakeFileInputStreamOptions()
Creates a new instance of DataLakeFileInputStreamOptions.
Method Details
getBlockSize
public Integer getBlockSize()
Gets 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:
getConsistentReadControl
public ConsistentReadControl getConsistentReadControl()
Gets the ConsistentReadControl Default is E-Tag.
Returns:
getRequestConditions
public DataLakeRequestConditions getRequestConditions()
Gets the DataLakeRequestConditions.
Returns:
isUserPrincipalName
public Boolean isUserPrincipalName()
Gets the value for the x-ms-upn header.
Returns:
setBlockSize
public DataLakeFileInputStreamOptions setBlockSize(Integer blockSize)
Sets 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.
Parameters:
Returns:
setConsistentReadControl
public DataLakeFileInputStreamOptions setConsistentReadControl(ConsistentReadControl consistentReadControl)
Sets the ConsistentReadControl Default is E-Tag.
Parameters:
Returns:
setRange
setRequestConditions
public DataLakeFileInputStreamOptions setRequestConditions(DataLakeRequestConditions requestConditions)
Sets the DataLakeRequestConditions.
Parameters:
Returns:
setUserPrincipalName
public DataLakeFileInputStreamOptions setUserPrincipalName(Boolean userPrincipalName)
Sets the value for the x-ms-upn header.
Parameters:
Returns:
Applies to
Azure SDK for Java