Module tdlight.api

Class TdApi.LocalFile

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.LocalFile
Enclosing class:
TdApi

public static final class TdApi.LocalFile extends TdApi.Object
Represents a local file.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    boolean
    True, if the file can be deleted.
    boolean
    True, if it is possible to download or generate the file.
    static final int
    Identifier uniquely determining type of the object.
    long
    If isDownloadingCompleted is false, then only some prefix of the file starting from downloadOffset is ready to be read.
    long
    Total downloaded file size, in bytes.
    long
    Download will be started from this offset.
    boolean
    True, if the file is currently being downloaded (or a local copy is being generated by some other means).
    boolean
    True, if the local copy is fully available.
    Local path to the locally available file part; may be empty.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Represents a local file.
    Represents a local file.
    LocalFile(String path, boolean canBeDownloaded, boolean canBeDeleted, boolean isDownloadingActive, boolean isDownloadingCompleted, long downloadOffset, long downloadedPrefixSize, long downloadedSize)
    Represents a local file.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
    Returns an identifier uniquely determining type of the object.
    int
     
    void
    Serialize the TDLib class

    Methods inherited from class it.tdlight.jni.TdApi.Object

    serialize, toString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • path

      public String path
      Local path to the locally available file part; may be empty.
    • canBeDownloaded

      public boolean canBeDownloaded
      True, if it is possible to download or generate the file.
    • canBeDeleted

      public boolean canBeDeleted
      True, if the file can be deleted.
    • isDownloadingActive

      public boolean isDownloadingActive
      True, if the file is currently being downloaded (or a local copy is being generated by some other means).
    • isDownloadingCompleted

      public boolean isDownloadingCompleted
      True, if the local copy is fully available.
    • downloadOffset

      public long downloadOffset
      Download will be started from this offset. downloadedPrefixSize is calculated from this offset.
    • downloadedPrefixSize

      public long downloadedPrefixSize
      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

      public long downloadedSize
      Total downloaded file size, in bytes. Can 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
      Identifier uniquely determining type of the object.
      See Also:
  • Constructor Details

    • LocalFile

      public LocalFile()
      Represents a local file.
    • LocalFile

      public LocalFile(String path, boolean canBeDownloaded, boolean canBeDeleted, boolean isDownloadingActive, boolean isDownloadingCompleted, long downloadOffset, long downloadedPrefixSize, long downloadedSize)
      Represents a local file.
      Parameters:
      path - Local path to the locally available file part; may be empty.
      canBeDownloaded - True, if it is possible to download or generate the file.
      canBeDeleted - True, if the file can be deleted.
      isDownloadingActive - True, if the file is currently being downloaded (or a local copy is being generated by some other means).
      isDownloadingCompleted - True, if the local copy is fully available.
      downloadOffset - Download will be started from this offset. downloadedPrefixSize is calculated from this offset.
      downloadedPrefixSize - 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 - Total downloaded file size, in bytes. Can be used only for calculating download progress. The actual file size may be bigger, and some parts of it may contain garbage.
    • LocalFile

      public LocalFile(DataInput input) throws IOException
      Represents a local 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 class TdApi.Object
      Returns:
      this.CONSTRUCTOR
    • serialize

      public void serialize(DataOutput output) throws IOException
      Serialize the TDLib class
      Specified by:
      serialize in class TdApi.Object
      Parameters:
      output - output data stream
      Throws:
      IOException - the serialization failed
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object