- Enclosing class:
- TdApi
Adds a file from a message to the list of file downloads. Download
progress and completion of the download will be notified through
updateFile updates. If message database is used, the list of file
downloads is persistent across application restarts. The downloading
is independent from download using downloadFile, i.e. it continues if
downloadFile is canceled or is used to download a part of the file.
Returns File
-
Field Summary
Modifier and TypeFieldDescriptionlong
Chat identifier of the message with the file.static final int
Identifier uniquely determining type of the object.int
Identifier of the file to download.long
Message identifier.int
Priority of the download (1-32). -
Constructor Summary
ConstructorDescriptionAdds a file from a message to the list of file downloads.AddFileToDownloads
(int fileId, long chatId, long messageId, int priority) Adds a file from a message to the list of file downloads.AddFileToDownloads
(DataInput input) Adds a file from a message to the list of file downloads. -
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.Function
toString
Methods inherited from class it.tdlight.jni.TdApi.Object
serialize
-
Field Details
-
fileId
public int fileIdIdentifier of the file to download. -
chatId
public long chatIdChat identifier of the message with the file. -
messageId
public long messageIdMessage identifier. -
priority
public int priorityPriority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
AddFileToDownloads
public AddFileToDownloads()Adds a file from a message to the list of file downloads. Download progress and completion of the download will be notified through updateFile updates. If message database is used, the list of file downloads is persistent across application restarts. The downloading is independent from download using downloadFile, i.e. it continues if downloadFile is canceled or is used to download a part of the file.Returns
File
-
AddFileToDownloads
public AddFileToDownloads(int fileId, long chatId, long messageId, int priority) Adds a file from a message to the list of file downloads. Download progress and completion of the download will be notified through updateFile updates. If message database is used, the list of file downloads is persistent across application restarts. The downloading is independent from download using downloadFile, i.e. it continues if downloadFile is canceled or is used to download a part of the file.Returns
File
- Parameters:
fileId
- Identifier of the file to download.chatId
- Chat identifier of the message with the file.messageId
- Message identifier.priority
- Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first.Returns
File
-
AddFileToDownloads
Adds a file from a message to the list of file downloads. Download progress and completion of the download will be notified through updateFile updates. If message database is used, the list of file downloads is persistent across application restarts. The downloading is independent from download using downloadFile, i.e. it continues if downloadFile is canceled or is used to download a part of the file.Returns
File
- 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()
-