Module tdlight.api

Class TdApi.AddFileToDownloads

Enclosing class:
TdApi

public static final class TdApi.AddFileToDownloads extends TdApi.Function<TdApi.File>
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 Details

    • fileId

      public int fileId
      Identifier of the file to download.
    • chatId

      public long chatId
      Chat identifier of the message with the file.
    • messageId

      public long messageId
      Message identifier.
    • priority

      public int 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.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      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 - int Identifier of the file to download.
      chatId - long Chat identifier of the message with the file.
      messageId - long Message identifier.
      priority - int 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.
    • AddFileToDownloads

      public AddFileToDownloads(DataInput input) throws IOException
      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
      Throws:
      IOException
  • Method Details