:github_url: hide .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StreamPeerGZIP.xml. .. _class_StreamPeerGZIP: StreamPeerGZIP ============== **Experimental:** This class may be changed or removed in future versions. **Inherits:** :ref:`StreamPeer` **<** :ref:`RefCounted` **<** :ref:`Object` A stream peer that handles GZIP and deflate compression/decompression. .. rst-class:: classref-introduction-group Description ----------- This class allows to compress or decompress data using GZIP/deflate in a streaming fashion. This is particularly useful when compressing or decompressing files that have to be sent through the network without needing to allocate them all in memory. After starting the stream via :ref:`start_compression()` (or :ref:`start_decompression()`), calling :ref:`StreamPeer.put_partial_data()` on this stream will compress (or decompress) the data, writing it to the internal buffer. Calling :ref:`StreamPeer.get_available_bytes()` will return the pending bytes in the internal buffer, and :ref:`StreamPeer.get_partial_data()` will retrieve the compressed (or decompressed) bytes from it. When the stream is over, you must call :ref:`finish()` to ensure the internal buffer is properly flushed (make sure to call :ref:`StreamPeer.get_available_bytes()` on last time to check if more data needs to be read after that). .. rst-class:: classref-reftable-group Methods ------- .. table:: :widths: auto +---------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |void| | :ref:`clear`\ (\ ) | +---------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Error` | :ref:`finish`\ (\ ) | +---------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Error` | :ref:`start_compression`\ (\ use_deflate\: :ref:`bool` = false, buffer_size\: :ref:`int` = 65535\ ) | +---------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Error` | :ref:`start_decompression`\ (\ use_deflate\: :ref:`bool` = false, buffer_size\: :ref:`int` = 65535\ ) | +---------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Method Descriptions ------------------- .. _class_StreamPeerGZIP_method_clear: .. rst-class:: classref-method |void| **clear**\ (\ ) :ref:`🔗` Clears this stream, resetting the internal state. .. rst-class:: classref-item-separator ---- .. _class_StreamPeerGZIP_method_finish: .. rst-class:: classref-method :ref:`Error` **finish**\ (\ ) :ref:`🔗` Finalizes the stream, compressing any buffered chunk left. You must call it only when you are compressing. .. rst-class:: classref-item-separator ---- .. _class_StreamPeerGZIP_method_start_compression: .. rst-class:: classref-method :ref:`Error` **start_compression**\ (\ use_deflate\: :ref:`bool` = false, buffer_size\: :ref:`int` = 65535\ ) :ref:`🔗` Start the stream in compression mode with the given ``buffer_size``, if ``use_deflate`` is ``true`` uses deflate instead of GZIP. .. rst-class:: classref-item-separator ---- .. _class_StreamPeerGZIP_method_start_decompression: .. rst-class:: classref-method :ref:`Error` **start_decompression**\ (\ use_deflate\: :ref:`bool` = false, buffer_size\: :ref:`int` = 65535\ ) :ref:`🔗` Start the stream in decompression mode with the given ``buffer_size``, if ``use_deflate`` is ``true`` uses deflate instead of GZIP. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |required| replace:: :abbr:`required (This method is required to be overridden when extending its base class.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)` .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)` .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)` .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)` .. |void| replace:: :abbr:`void (No return value.)`