Class TdApi.AddFileToDownloads

Enclosing class:
TdApi

public static 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 of 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

    Fields
    Modifier and Type
    Field
    Description
    long
    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

    Constructors
    Constructor
    Description
    Default constructor for a function, which adds a file from a message to the list of file downloads.
    AddFileToDownloads(int fileId, long chatId, long messageId, int priority)
    Creates a function, which adds a file from a message to the list of file downloads.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns an identifier uniquely determining type of the object.

    Methods inherited from class dev.voroby.springframework.telegram.client.TdApi.Function

    toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • 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
      Identifier uniquely determining type of the object.
      See Also:
  • Constructor Details

    • AddFileToDownloads

      public AddFileToDownloads()
      Default constructor for a function, which 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 of 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)
      Creates a function, which 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 of 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.
  • 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 class TdApi.Object
      Returns:
      this.CONSTRUCTOR