mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Add download_chunk_size property to HTTPRequest.
This allows setting the `read_chunk_size` of the internal HTTPClient. This is important to reduce the allocation overhead and number of file writes when downloading large files, allowing for better download speed.
This commit is contained in:
parent
37b230fe3a
commit
ed19b4076e
7 changed files with 37 additions and 9 deletions
|
|
@ -126,6 +126,9 @@ public:
|
|||
void set_download_file(const String &p_file);
|
||||
String get_download_file() const;
|
||||
|
||||
void set_download_chunk_size(int p_chunk_size);
|
||||
int get_download_chunk_size() const;
|
||||
|
||||
void set_body_size_limit(int p_bytes);
|
||||
int get_body_size_limit() const;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue