Package io.delta.kernel.engine
Interface FileReadRequest
Represents a request to read a range of bytes from a given file.
-
Method Summary
Modifier and TypeMethodDescriptiongetPath()
Get the fully qualified path of the file from which to read the data.int
Get the length of the data to read from the file starting at the startOffset.int
Get the start offset in the file from where to start reading the data.
-
Method Details
-
getPath
String getPath()Get the fully qualified path of the file from which to read the data. -
getStartOffset
int getStartOffset()Get the start offset in the file from where to start reading the data. -
getReadLength
int getReadLength()Get the length of the data to read from the file starting at the startOffset.
-