Package com.gpudb.filesystem
Class MultiPartDownloadInfo
- java.lang.Object
-
- com.gpudb.filesystem.MultiPartDownloadInfo
-
public class MultiPartDownloadInfo extends Object
This class packages and mimics certain important attributes of a multi-part download operation. The attributes of this class are in one-one correspondence to those specified in theGPUdb.downloadFiles(List, List, List, Map)endpoint.This class is read-only for API consumers - instances are created internally and provided via Result callbacks. Users should not attempt to instantiate this class directly.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteBuffergetData()longgetDownloadPartNumber()longgetReadLength()longgetReadOffset()longgetTotalParts()
-
-
-
Method Detail
-
getReadOffset
public long getReadOffset()
-
getReadLength
public long getReadLength()
-
getDownloadPartNumber
public long getDownloadPartNumber()
-
getTotalParts
public long getTotalParts()
-
getData
public ByteBuffer getData()
-
-