Package it.tdlight.jni
Class TdApi.LocalFile
java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.LocalFile
- Enclosing class:
- TdApi
public static class TdApi.LocalFile extends TdApi.Object
Represents a local file.
-
Field Summary
Fields Modifier and Type Field Description boolean
canBeDeleted
True, if the file can be deleted.boolean
canBeDownloaded
True, if it is possible to try to download or generate the file.static int
CONSTRUCTOR
int
downloadedPrefixSize
If isDownloadingCompleted is false, then only some prefix of the file starting from downloadOffset is ready to be read.int
downloadedSize
Total downloaded file size, in bytes.int
downloadOffset
Download will be started from this offset.boolean
isDownloadingActive
True, if the file is currently being downloaded (or a local copy is being generated by some other means).boolean
isDownloadingCompleted
True, if the local copy is fully available.String
path
Local path to the locally available file part; may be empty. -
Constructor Summary
Constructors Constructor Description LocalFile()
Represents a local file.LocalFile(DataInput input)
LocalFile(String path, boolean canBeDownloaded, boolean canBeDeleted, boolean isDownloadingActive, boolean isDownloadingCompleted, int downloadOffset, int downloadedPrefixSize, int downloadedSize)
Represents a local file. -
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
int
getConstructor()
int
hashCode()
void
serialize(DataOutput output)
Methods inherited from class it.tdlight.jni.TdApi.Object
serialize, toString
-
Field Details
-
path
Local path to the locally available file part; may be empty. -
canBeDownloaded
public boolean canBeDownloadedTrue, if it is possible to try to download or generate the file. -
canBeDeleted
public boolean canBeDeletedTrue, if the file can be deleted. -
isDownloadingActive
public boolean isDownloadingActiveTrue, if the file is currently being downloaded (or a local copy is being generated by some other means). -
isDownloadingCompleted
public boolean isDownloadingCompletedTrue, if the local copy is fully available. -
downloadOffset
public int downloadOffsetDownload will be started from this offset. downloadedPrefixSize is calculated from this offset. -
downloadedPrefixSize
public int downloadedPrefixSizeIf isDownloadingCompleted is false, then only some prefix of the file starting from downloadOffset is ready to be read. downloadedPrefixSize is the size of that prefix in bytes. -
downloadedSize
public int downloadedSizeTotal downloaded file size, in bytes. Should be used only for calculating download progress. The actual file size may be bigger, and some parts of it may contain garbage. -
CONSTRUCTOR
public static final int CONSTRUCTOR- See Also:
- Constant Field Values
-
-
Constructor Details
-
LocalFile
public LocalFile()Represents a local file. -
LocalFile
public LocalFile(String path, boolean canBeDownloaded, boolean canBeDeleted, boolean isDownloadingActive, boolean isDownloadingCompleted, int downloadOffset, int downloadedPrefixSize, int downloadedSize)Represents a local file.- Parameters:
path
- String Local path to the locally available file part; may be empty.canBeDownloaded
- boolean True, if it is possible to try to download or generate the file.canBeDeleted
- boolean True, if the file can be deleted.isDownloadingActive
- boolean True, if the file is currently being downloaded (or a local copy is being generated by some other means).isDownloadingCompleted
- boolean True, if the local copy is fully available.downloadOffset
- int Download will be started from this offset. downloadedPrefixSize is calculated from this offset.downloadedPrefixSize
- int If isDownloadingCompleted is false, then only some prefix of the file starting from downloadOffset is ready to be read. downloadedPrefixSize is the size of that prefix in bytes.downloadedSize
- int Total downloaded file size, in bytes. Should be used only for calculating download progress. The actual file size may be bigger, and some parts of it may contain garbage.
-
LocalFile
- Throws:
IOException
-
-
Method Details
-
getConstructor
public int getConstructor()- Specified by:
getConstructor
in classTdApi.Object
-
serialize
- Specified by:
serialize
in classTdApi.Object
- Throws:
IOException
-
equals
-
hashCode
public int hashCode()
-