Package it.tdlight.jni
Class TdApi.File
java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.File
- Enclosing class:
- TdApi
public static class TdApi.File extends TdApi.Object
Represents a file.
-
Field Summary
Fields Modifier and Type Field Description static int
CONSTRUCTOR
int
expectedSize
Approximate file size in bytes in case the exact file size is unknown.int
id
Unique file identifier.TdApi.LocalFile
local
Information about the local copy of the file.TdApi.RemoteFile
remote
Information about the remote copy of the file.int
size
File size, in bytes; 0 if unknown. -
Constructor Summary
Constructors Constructor Description File()
Represents a file.File(int id, int size, int expectedSize, TdApi.LocalFile local, TdApi.RemoteFile remote)
Represents a file.File(DataInput input)
-
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
int
getConstructor()
int
hashCode()
void
serialize(DataOutput output)
Methods inherited from class it.tdlight.jni.TdApi.Object
serialize, toString
-
Field Details
-
id
public int idUnique file identifier. -
size
public int sizeFile size, in bytes; 0 if unknown. -
expectedSize
public int expectedSizeApproximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress. -
local
Information about the local copy of the file. -
remote
Information about the remote copy of the file. -
CONSTRUCTOR
public static final int CONSTRUCTOR- See Also:
- Constant Field Values
-
-
Constructor Details
-
File
public File()Represents a file. -
File
Represents a file.- Parameters:
id
- int Unique file identifier.size
- int File size, in bytes; 0 if unknown.expectedSize
- int Approximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress.local
- LocalFile Information about the local copy of the file.remote
- RemoteFile Information about the remote copy of the file.
-
File
- Throws:
IOException
-
-
Method Details
-
getConstructor
public int getConstructor()- Specified by:
getConstructor
in classTdApi.Object
-
serialize
- Specified by:
serialize
in classTdApi.Object
- Throws:
IOException
-
equals
-
hashCode
public int hashCode()
-