java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.FileDownload
- Enclosing class:
- TdApi
Describes a file added to file download list.
-
Field Summary
Modifier and TypeFieldDescriptionint
Point in time (Unix timestamp) when the file was added to the download list.int
Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed.static final int
Identifier uniquely determining type of the object.int
File identifier.boolean
True, if downloading of the file is paused.The message with the file. -
Constructor Summary
ConstructorDescriptionDescribes a file added to file download list.FileDownload
(int fileId, TdApi.Message message, int addDate, int completeDate, boolean isPaused) Describes a file added to file download list.FileDownload
(DataInput input) Describes a file added to file download list. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
Returns an identifier uniquely determining type of the object.int
hashCode()
void
serialize
(DataOutput output) Serialize the TDLib classMethods inherited from class it.tdlight.jni.TdApi.Object
serialize, toString
-
Field Details
-
fileId
public int fileIdFile identifier. -
message
The message with the file. -
addDate
public int addDatePoint in time (Unix timestamp) when the file was added to the download list. -
completeDate
public int completeDatePoint in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed. -
isPaused
public boolean isPausedTrue, if downloading of the file is paused. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
FileDownload
public FileDownload()Describes a file added to file download list. -
FileDownload
public FileDownload(int fileId, TdApi.Message message, int addDate, int completeDate, boolean isPaused) Describes a file added to file download list.- Parameters:
fileId
- File identifier.message
- The message with the file.addDate
- Point in time (Unix timestamp) when the file was added to the download list.completeDate
- Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed.isPaused
- True, if downloading of the file is paused.
-
FileDownload
Describes a file added to file download list.- Parameters:
input
- Serialized input- Throws:
IOException
- the deserialization failed
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-
serialize
Serialize the TDLib class- Specified by:
serialize
in classTdApi.Object
- Parameters:
output
- output data stream- Throws:
IOException
- the serialization failed
-
equals
-
hashCode
public int hashCode()
-