Inherits Function.
Writes a part of a generated file. This method is intended to be used only if the application has no direct access to TDLib's file system, because it is usually slower than a direct write to the destination file.
Returns object_ptr<Ok>.
Public Fields | |
int64 | generation_id_ |
The identifier of the generation process. | |
int53 | offset_ |
The offset from which to write the data to the file. | |
bytes | data_ |
The data to write. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
writeGeneratedFilePart () | |
writeGeneratedFilePart (int64 generation_id_, int53 offset_, bytes const &data_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 214474389 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which writes a part of a generated file. This method is intended to be used only if the application has no direct access to TDLib's file system, because it is usually slower than a direct write to the destination file.
Returns object_ptr<Ok>.
writeGeneratedFilePart | ( | int64 | generation_id_, |
int53 | offset_, | ||
bytes const & | data_ | ||
) |
Creates a function, which writes a part of a generated file. This method is intended to be used only if the application has no direct access to TDLib's file system, because it is usually slower than a direct write to the destination file.
Returns object_ptr<Ok>.
[in] | generation_id_ | The identifier of the generation process. |
[in] | offset_ | The offset from which to write the data to the file. |
[in] | data_ | The data to write. |
|
finalvirtual |